Archivo de la categoría: Science and Technology

Inauguración del Infosoft PUCP 2012

Logo de Infosoft 2012

 

Les comparto un poco de lo que fue la inauguración y las primeras charlas del Infosoft 2012.

 

Ponentes de la inauguración y miembros del comité organizador del Infosoft 2012

 

Web de Infosoft 2012

 

La filosofía este año es COMPARTIR, claro que lo transferido es conocimiento y tecnología.

Toda esta semana estará llena de actividades: conferencias, charlas, talleres y ferias.

 

Destaco algunos puntos del programa de inauguración:

 

Se mostró un atractivo video introductorio

Antonio Pow Sang y Abraham Dávila dieron las palabras como autoridades de la universidad.

 

Carlos Bustamante dio una motivadora charla inicial, abordando el trajín de la organización del evento. Compartiendo, enseñando, interactuando. Junto siempre todo el equipo del comité organizador.

@carlosatiti Carlos Bustamante en twitter

 

Franco Paolo Carranza de e-interactiva nos contó acerca de su emprendimiento, detalles, anécdotas, consejos.

@TragicError01 Franco Paolo Carranza en twitter

Web de e-nteractiva

 

Ernesto Gordillo también compartió visiones particualres y alguans otras que ha percibido en el ecosistema de las startups.

@ernekin_sw Ernesto Gordillo en twitter

 

Arturo Coral nos contó su experiencia emprendiendo. Con capítulos de su vida personal, su actitud divergente, empresas quebradas, SEINC y Feedme.

SEINC. Consultora en inteligencia comercial. «El análisis de datos y la información guían a las empresas competitivas e inteligentes»

Feedme «el mesero perfecto»

Nacida como UsualPoint (fb  y tw). Ganadora de Wayra Perú y Fondo de Competitividad Nacional de FIDECOM. Actualmente concursando en Start-Up Chile). Los mentores, alianzas, financiamiento serán favorables para este proyecto que es una realidad y promete mucho más.

@cavilont Arturo Coral en twitter

Web de Feedme

Feedme en facebook

 

 

Mesa de Diálogo que abordó el tema de «Emprendimiento»

En la Mesa de Diálogo se abordó el tema del Emprendimiento

 

Manuel Trigoso de FINCyT

Programa de Ciencia y Tecnología

Web del FINCyT

 

Julio Vela del CIDE-PUCP

Centro de Innovación y Desarrollo Emprendedor – PUCP

Web del CIDE-PUCP

CIDE-PUCP en facebook

CIDE-PUCP en twitter

 

Álvaro Zárate de Lima Valley

Web de Lima Valley

@limavalley Lima Valley en twitter

Lima Valley en facebook

@alvarozarate Álvaro Zárate en twitter

 

No asistió MGP Nuevas Artes pero en su lugar se presentó Dipoo con un video en exclusiva que presenta a esta cuponera virtual. Dipoo acelerada en Startup Academy ira próximamente a buscar capital a Silicon Valley.

Web de Dipoo

@dipooPE Dipoo en twitter

Dipoo en facebook

 

Web de MGP Nuevas Artes

MGP Nuevas Artes en facebook

@mgpperu MGP Nuevas Artes en twitter

 

 

Infosoft 2012 en internet

Infosoft 2012 en facebook

Infosoft 2012 en twitter

hashtag #infosoft2012 en twitter

 

 

Otros enlaces

Startup Academy

Web de Startup Academy

Startup Academy en facebook

@StartupAcademy_ Startup Academy en twitter

 

 

Compiling and Installing HandVu on Linux

HandVu

On this tutorial we will cover the compilation from sources of HandVu beta 3 and its compilation and installation on Ubuntu 10.04 LTS (Lucid Lynx).

1. Download the package

$ wget http://www.movesinstitute.org/~kolsch/HandVu/handvu-beta3.tar.gz

2. Uncompress the package

$ gunzip -c handvu-beta3.tar.gz | tar xopf -

3. Enter the directory

$ cd handvu-beta3

4. Configure for make

$ ./configure

5. Make

If we execute make command some errors will appear. These errors could be:


error: 'ULONG_LONG_MAX' was not declared in this scope
error: 'INT_MAX' was not declared in this scope

error: 'alloca' was not declared in this scope
error: 'strlen' was not declared in this scope
error: 'strcpy' was not declared in this scope
error: 'strtok' was not declared in this scope
error: 'strrchr' was not declared in this scope

error: 'atof' was not declared in this scope

error: 'memset' was not declared in this scope

So let’s add some lines of code

to cubicles/IntegralFeatures.cpp

#include <alloca.h>
#include <limits.h>

to cubicles/IntegralFeaturesSame.cpp

#include <alloca.h>

to cubicles/CascadeFileParser.yy

#include <string.h>

to cubicles/Scanner.h

#include <limits.h>

to cubicles/IntegralImage.cxx

#include <string.h>

to handvu/Mask.cpp

#include <alloca.h>
#include <stdlib.h>
#include <string.h>

to handvu/FileHandling.cpp

#include <string.h>

on this last file we also need to change a pair of lines, otherwise the following error will appear:


error: invalid conversion from 'const char*' to 'char*'

on handvu/FileHandling.cpp change from this:

char* slashpos = strrchr(path, '/');
char* dotpos = strrchr(path, '.');

to this:

const char* slashpos = strrchr(path, '/');
const char* dotpos = strrchr(path, '.');

Now we can execute make

$ make

6. Intall

$ sudo make install

We are done!

Blessings!

OpenCV 2.1 on NetBeans on Windows

OpenCV

NetBeans

First of all, try no to use Windows.

1. Make sure you got the following installed

  • C:\OpenCV2.1
  • C:\MinGW
  • C:\msys

2. Right click on your project and click in Properties and complete the following:

Build » C++ Compiler
   » Include Directories » C:/OpenCV2.1/include/opencv

Build » C++ Compiler » Include Directories » C:/OpenCV2.1/include/openc

   » Linker
      » Additional Library Directories » C:/OpenCV2.1/lib
      » Libraries » cv210.dll, cvaux210.dll,
                    cxcore210.dll, highgui210.dll

Build » Linker

3. Build your project.

Executable (*.exe) file will be generated and located in your project directory on the following path: dist/Debug/MinGW-Windows/

Use this simple code to test your recently set environment:

#include "highgui.h"

int main(int argc, char** argv){
   IplImage* img = cvLoadImage(argv[1]);
   cvNamedWindow("ImgViewer", CV_WINDOW_AUTOSIZE);
   cvShowImage("ImgViewer", img);
   cvWaitKey(0);
   cvReleaseImage(&img);
   cvDestroyWindow("ImgViewer");
}