Wednesday, July 26, 2017
Journals for Bio Informatics
https://scfbm.biomedcentral.com/track/pdf/10.1186/1751-0473-3-6?site=scfbm.biomedcentral.com
springer computer vision http://www.springer.com/computer/image+processing/journal/11263 11 8.2
IEEE http://signalprocessingsociety.org/publications-resources/ieee-transactions-image-processing 44 4.3
ELSEVIER Pattern recognition https://www.journals.elsevier.com/pattern-recognition/ 47 4.5
ELSEVIER Medical image analysis https://www.journals.elsevier.com/medical-image-analysis/ 56 4.1
IEEE Medical images https://ieee-tmi.org/ 68 3.9
ELSEVIER https://www.journals.elsevier.com/computer-vision-and-image-understanding/ 112 3.2
ELSEVIER https://www.journals.elsevier.com/image-and-vision-computing/ 165 2.6
ELSEVIER https://www.journals.elsevier.com/computer-vision-and-image-understanding/ 189 2.4
http://www.guide2research.com/journals/computer-vision
Tuesday, July 18, 2017
PDF Signature
Resources:
[1] Make signature and put over pdf https://www.pdfbuddy.com
[2] Draw signature over pdf https://www.pdffiller.com
Machine Learning Lectures & Tools
References:
[1] Clustering notes: http://www.cs.toronto.edu/~mbrubake/teaching/C11/Handouts/Clustering.pdf
Datasets:
EMOTIV EPOC+ 14 Channel Mobile EEG https://archive.ics.uci.edu/ml/datasets/EEG+Eye+State#
https://archive.ics.uci.edu/ml/datasets
Resources:
[1] Optimizing parameters of Classifier https://weka.wikispaces.com/Optimizing+parameters
[2] CSV to ARFF online http://ikuz.eu/csv2arff/
Sunday, July 09, 2017
Saturday, July 08, 2017
PCA Feature extraction
References:
[1] PCA http://www.visiondummy.com/2014/05/feature-extraction-using-pca/
[2] Reducción de dimensinalidad usando PCA https://www.coursera.org/learn/clasificacion-imagenes/lecture/PaTVm/reduccion-de-descriptores-pca
[3] Opencv code with explanation for dimentional reduction
https://stackoverflow.com/questions/27733002/how-to-use-pca-to-reduce-dimension
[4] Distances http://wwwae.ciemat.es/~cardenas/docs/lessons/MedidasdeDistancia.pdf
Sunday, July 02, 2017
Lectures Descriptors & datasets
References:
1) BoW summary https://prateekvjoshi.com/2014/08/17/image-classification-using-bag-of-words-model/
2) https://github.com/constanton/bLDFV
Datasets
0) 2D hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
2D/3D Hela http://murphylab.web.cmu.edu/data/
1) Biomedical flourcence images
http://mivia.unisa.it/datasets/biomedical-image-datasets/hep2-image-dataset/
2) Microscopic/ Histology, Brain, Retinal and more https://sites.google.com/site/lisaywtang/research/descriptors
3) Other for visualization https://grouplens.org/datasets/movielens/
Monday, June 19, 2017
Animes online
Bleach
1) Sub English https://www4.animesubhd.net/watch/episode/subbed/bleach-238/
2) Sub Spanish http://jkanimeonline.com/ver/bleach-226.html
Wednesday, June 14, 2017
Bag of Features and Texture
Notes
What is the difference between SIFT and Dense SIFT
*SIFT consists of both detection and description while dense sift only uses the descriptor in densely sampled locations [1].
*SIFT identifies interest points using Difference of Gaussian Filtering (DoG) before using Histogram of Oriented Gradients (HOG) to describe these interest points, however Dense-SIFT does not identify interest points, it simply divides the image into overlapping cells before using HOG to describe them. since they both use HOG they both produce 128 dimensional feature vectors [1].
*SIFT is typically computed at interest points. Dense SIFT is computed at every pixel, or every kth pixel. HOG is computed for a rectangular cell array where each cell is usually 8x8 pixels. Dense SIFT and HOG are similar in the sense that they both characterize edginess and orientation around pixels, but the computations are different. Jianxiong Xiao's 2x2 HOG is different than normal HOG. The truth is that once you know how these kinds if features work you can get fancy and histogram them differently, change normalization terms, etc and create your own variant. I spoke with Prof Xiao many times about this when we ovarlapped at MIT [2].
*Firstly, Difference of Gaussians (DoG) can be used for estimating Laplacian of Gaussians (LoG), which are useful for finding edges and blobs. DoG is computationally faster so it is used. Overall, the way in which LoG is used for SIFT and HOG is the fundamental difference between these two feature descriptors. Dense SIFT is exactly as it sounds, SIFT computed densely for every pixel in the image and it helps in image registration, pose estimation, object recognition, etc [2].
Resources
1) BoF imlmentation using SURF, IHOG http://www.cvc.uab.cat/~aldavert/plor/software.html
2) Texture video https://www.youtube.com/watch?v=LQBKIi-Xtbc
3) Textons http://webpages.uncc.edu/~yjaved/publications.html
4) Bag of Visual Words implementation (Functional) http://www.codeproject.com/Articles/619039/Bag-of-Features-Descriptor-on-SIFT-Features-with-O
5) Gabor filters histogram, explanation
http://stackoverflow.com/questions/20608458/gabor-feature-extraction
6) Filter Banks, Matlab Source Code
http://www.robots.ox.ac.uk/~vgg/research/texclass/filters.html
7) Texture classification using textons http://courses.media.mit.edu/2008fall/mas622j/Projects/NickLoomis/
References
[1] https://www.researchgate.net/post/What_is_the_difference_between_SIFT_and_Dense_SIFT
[2] https://www.quora.com/Computer-Vision-Is-there-a-difference-if-any-between-dense-SIFT-and-HOG
What is the difference between SIFT and Dense SIFT
*SIFT consists of both detection and description while dense sift only uses the descriptor in densely sampled locations [1].
*SIFT identifies interest points using Difference of Gaussian Filtering (DoG) before using Histogram of Oriented Gradients (HOG) to describe these interest points, however Dense-SIFT does not identify interest points, it simply divides the image into overlapping cells before using HOG to describe them. since they both use HOG they both produce 128 dimensional feature vectors [1].
*SIFT is typically computed at interest points. Dense SIFT is computed at every pixel, or every kth pixel. HOG is computed for a rectangular cell array where each cell is usually 8x8 pixels. Dense SIFT and HOG are similar in the sense that they both characterize edginess and orientation around pixels, but the computations are different. Jianxiong Xiao's 2x2 HOG is different than normal HOG. The truth is that once you know how these kinds if features work you can get fancy and histogram them differently, change normalization terms, etc and create your own variant. I spoke with Prof Xiao many times about this when we ovarlapped at MIT [2].
*Firstly, Difference of Gaussians (DoG) can be used for estimating Laplacian of Gaussians (LoG), which are useful for finding edges and blobs. DoG is computationally faster so it is used. Overall, the way in which LoG is used for SIFT and HOG is the fundamental difference between these two feature descriptors. Dense SIFT is exactly as it sounds, SIFT computed densely for every pixel in the image and it helps in image registration, pose estimation, object recognition, etc [2].
Resources
1) BoF imlmentation using SURF, IHOG http://www.cvc.uab.cat/~aldavert/plor/software.html
2) Texture video https://www.youtube.com/watch?v=LQBKIi-Xtbc
3) Textons http://webpages.uncc.edu/~yjaved/publications.html
4) Bag of Visual Words implementation (Functional) http://www.codeproject.com/Articles/619039/Bag-of-Features-Descriptor-on-SIFT-Features-with-O
5) Gabor filters histogram, explanation
http://stackoverflow.com/questions/20608458/gabor-feature-extraction
6) Filter Banks, Matlab Source Code
http://www.robots.ox.ac.uk/~vgg/research/texclass/filters.html
7) Texture classification using textons http://courses.media.mit.edu/2008fall/mas622j/Projects/NickLoomis/
References
[1] https://www.researchgate.net/post/What_is_the_difference_between_SIFT_and_Dense_SIFT
[2] https://www.quora.com/Computer-Vision-Is-there-a-difference-if-any-between-dense-SIFT-and-HOG
Labels:
C/C++,
Computer Vision,
Image Processing,
Linux
Friday, June 09, 2017
Self-Organizing Map (Resources)
Source code:
1) https://www.codeproject.com/Articles/21385/Kohonen-s-Self-Organizing-Maps-in-C-with-Applicati
2) https://www.codeproject.com/Articles/16273/Self-Organizing-Feature-Maps-Kohonen-maps
3) C++ Sample http://mnemstudio.org/neural-networks-som1.htm
4) GHSOM https://github.com/fffaraz/GHSOM-CPP
Yellow dots, Microdots, how to discover
Resources
1) Tutorial http://blog.erratasec.com/2017/06/how-intercept-outed-reality-winner.html
2) DocuColor Tracking Dot Decode Guide https://w2.eff.org/Privacy/printers/docucolor
Wednesday, June 07, 2017
Monday, June 05, 2017
Convert PowerPoint to EPS
When you draw some design and you like to put in your paper
1. Open your design on Powerpoint, then save as .wmf(windows meta file)
2. go to https://cloudconvert.com/anything-to-eps
3. Load you .wmf file and convert to eps
4. Download result
Thursday, May 18, 2017
Wednesday, May 10, 2017
Fiducial Land Mark (Face Keypoints)
Facial Keypoints
[1] https://github.com/sunsided/facial-keypoints
[2] kaggle https://www.kaggle.com/c/facial-keypoints-detection/data
Resources:
1) Source Code Matlab/C++
http://cmp.felk.cvut.cz/~uricamic/flandmark/
Thursday, May 04, 2017
LBP Descriptor resources
Lectures
Texture descriptor (pt) http://wiki.icmc.usp.br/images/d/d7/Dip10_imagedescription-texture.pdf
Resources
1) 2015 LBP variant library https://github.com/carolinepacheco/lbplibrary
2) University OULU http://www.cse.oulu.fi/CMV/Downloads/LBPMatlab
3) Upsala University http://www.cb.uu.se/~gustaf/textureDescriptors/
Friday, March 31, 2017
Thursday, March 23, 2017
Wednesday, March 15, 2017
OpenCV 2.4 Fix cvCreateGLCM()
Changes for cvCreateGLCM(), see [1] for more details, and [2] has code ready for recompile.
Resources/References:
[1] http://intercontineo.com/article/723743881/
[2] https://drive.google.com/open?id=0B8teK-3L4sK2Tll1Y2FyWmNCc3M
Monday, March 13, 2017
Tuesday, March 07, 2017
Saturday, March 04, 2017
Machine Learning Resources
SVM References code
[1] https://www.youtube.com/watch?v=HtdhnGp-m74
Code
[1] iris and others
http://archive.ics.uci.edu/ml/datasets.html
[2] Tutorial code for SVM/NN and DecisionTree
http://breckon.eu/toby/teaching/ml/examples/c++/handwritten_ex/
[3] Adaboost source code
https://github.com/huneng
People
[1] Sift author https://scholar.google.fr/citations?hl=en&user=PXm1lPAAAAAJ
[1] https://www.youtube.com/watch?v=HtdhnGp-m74
Code
[1] iris and others
http://archive.ics.uci.edu/ml/datasets.html
[2] Tutorial code for SVM/NN and DecisionTree
http://breckon.eu/toby/teaching/ml/examples/c++/handwritten_ex/
[3] Adaboost source code
https://github.com/huneng
People
[1] Sift author https://scholar.google.fr/citations?hl=en&user=PXm1lPAAAAAJ
Tuesday, February 21, 2017
Visualization Frameworks and tools
Resources:
[1] d3js https://d3js.org
[2] threejs + webgl https://threejs.org/examples/#webgl_interactive_cubes
[3] shadertoy https://www.shadertoy.com/
[4] palette color http://colorbrewer2.org/
Friday, February 03, 2017
Como viajar de Perú-Arequipa a Brasil-São Carlos
Técnicamente es posible, e imagino que a mayor experiencia se puede optimizar tanto tiempo como dinero.
Generalmente te colocan solo los puntos y precios, pero hay detalles que aveces te pueden hacer perder tiempo, dinero y la paciencia. Espero esta descripción les pueda ayudar.
Inicio en el terminal terrestre de Arequipa de madrugada un jueves de enero, hay varias empresas de Arequipa-Juliaca, yo usé San Roman (20 Soles) dado que es el mas seguro, aunque demora un poco 4 a 4:30hrs.
Llegando a Juliaca, una moto taxi hacia el "Terminal a Puno" lo mejor es tomar un Omnibus hacia Puno (2 Soles) 1hr. Posteriormente llegando a Puno puedes tomar un Taxi(4 Soles) al "Terminal a Desaguadero", evidentemente tienen su nombre pero asi lo indicas y el taxista comprenderá perfectamente.
Ese terminal es por demanda, es decir bus lleno, bus que parte.
De Puno a Desaguadero te cobran 8 Soles sentado, parado 5 Soles y demora unas 3hrs.
Llegando a la frontera: Aquí desembarcas del ómnibus y sigues a la gente, al pasar los segundos veras el puente de frontera y además a los cambistas en unas mesitas pequeñas yo cambie 250 Soles que hacen unos 518 Pesos Bolivianos aquel dia.
Seguidamente te diriges a Migraciones(Perú) donde debes pedir tu hojita la llenas y haces cola para sellar la salida en tu pasaporte, recomiendo llenarla en la misma fila, ya marcaban casi las 6pm, hora en la que cierran frontera normalmente.
Cruzas a pie sin problema el puente Perú-Bolivia(Adiciona una hora a tu reloj), es probable que veas policías de Bolivia ni los mires, solo sigue a la gente ni les preguntes nada, yo lo hice y me llevaron adentro a abrir mi maleta y revisar mis cosas estuve 1hr atrapado. Al entrar a territorio boliviano hay dos calles divido por un edificio(migraciones de Bolivia) el control/puesto se encuentra a la izquierda(tu izquierda). De la misma forma pides tu hojita que es verde en este caso en una ventanilla externa, la fila mas larga esa es para sellar entrada a Bolivia, así que aquí mínimo consumirás unas dos horas(paciencia).
Luego sigues en la misma dirección que ingresaste a territorio boliviano y notaras unas combis hacia la Paz, ellos te cobran 15Bs y demora unas 2hrs.
En la Paz, es posible tomar un bus hacia Santa Cruz directo o en dos tramos, aveces por el horario no encuentras, yo lo hice en dos tramos. Tomé el bus a Cochabamba(Empresa El Dorado) que salia a las 10:00pm y demoraba 8hrs a 40Bs o 70Bs, depende del servicio. Yo tomé la segunda opción, sin embargo dada la comodidad de los ómnibus la próxima vez, tomare el de 40Bs por solo 8 horas no compensa mucho pagar casi el doble.
Ya en el terminal de Cochabamba, me sorprendí ver un cajero BCP, espero funcione me quedé con las ganas de usarlo, salí del terminal a tomar desayuno un Café, Pan y Queso, literalmente es eso (es decir el queso no viene dentro del Pan) a 10Bs. Dentro del terminal hay varias empresas que van a Santa Cruz desde 70Bs+2.5Bs por uso de Terminal, demora unas 10hrs. Partí como a las 7:15am(Ojo con el horario del terminal). Y es normal hacer parada en algún restaurante a la hora del almuerzo.
Durante el camino a Santa Cruz notaras el paisaje selvático, además de los controles policiales bajaras unas dos veces(control antidrogas). Una vez llegues al terminal notarás que es absolutamente desordenado e informal sin mencionar la calor(Enero). Hay gente que toma el tren de la muerte hacia Quijarro, en mi caso cuando llegué un Viernes el tren ya había salido a la 1pm, así que decido tomar otro ómnibus que demora unas 9hrs y cuesta 80Bs hasta Quijarro.
Al llegar a Quijarro 6-7am(en Puerto Suarez), debes tomar un taxi/colectivo hacia la frontera (10 Bs), llegando vi una fila larga en migraciones del lado de Bolivia, entonces decidí caminar en el mismo sentido del puente limite en busca de las empresas de ómnibus Andorinha que hacen ruta directa Frontera-São Paulo, lo que no vi fueron unos letreros de duchas, cuando llegué no me fije y fui a un hotel 60Bs y me quedé un día en frontera(Esto fue el sábado). Si hubiera visto las duchas hacia lo propio y continuaba(para la próxima).
Una vez dormido por la mañana almorcé y fui a frontera a ver que tal estaba la fila como a las 4pm, y aún tenia tiempo por que cierran a las 5pm, hice poner el sello y solo me faltaba pasar la noche y al día siguiente cruzar la frontera.
Yo nunca imaginé que podías marcar entrada de Bolivia e ingreso a Brasil y aún así dormir en Bolivia, es decir regresar a territorio de donde ya saliste(para la próxima).
Debí levantarme a las 5am(Domingo) para formar fila, pero fui a las 7am y las consecuencias fueron 8hrs en frontera para registrar mi ingreso a Brasil + 3 botellas de agua 15Bs (5Bs/botella) y el tráfico de fila, no hable con nadie aprovechan el dialogo para meter gente lo cual extiende la fila previa a ti.
Cruzando la frontera hay un ómnibus que pasa casi a cada 45min a 3.25R, yo tomé el de las 4pm(para que se hagan idea lo que demoré). Ese bus llega a un terminal local y tienes que hacer trasbordo a otro(Cristo Redentor) que es el que te lleva al Terminal de Corumbá(sin pagar nada adicional), ya en el Terminal de Corumbá puedes usar tu cartón del Banco de Brasil si tuvieses para pagar. Intenta no comprar nada; gasté 17R en 2 salteñas(salgados) y una Fanta.
Entonces aquí ya puedes comprar tu boleto hacia Campo Grande, irónicamente la empresa dominante es Andorinha, consulta [1] para los horarios. Costo de viaje 114R y salia a las 18.30pm con una demora de 9hrs. El Terminal Rodoviario de Campo grande es agradable similar a un aeropuerto, muy bueno desde mi punto de vista hasta dormí en la bancas, no había remedio atienden desde las 5 o 6am, compré mi ticket de Campo Grande a São José de Rio Preto para las 8am a 134R con un tiempo de 11hrs de viaje. En este tramo subirán los de la Policía Federal dos veces y te preguntarán de donde vienes? a donde te diriges? por que? etc, etc.
Finalmente en el terminal de Rio Preto un lugar con mucha antigüedad, compré un ticket a São Carlos para las 11.45pm a 60R y por fin las últimas 4hrs.
Llegando a São Carlos a las 4am un amigo me recogió, aunque a esa hora ya hay bastante gente y puedes esperar a clarear para usar el transporte local también.
Referencias:
1. Andorinha (Corumbá-Campo Grande) Horarios http://www.andorinha.com/sa/
2. Cometa http://www.viacaocometa.com.br/es/
3. Cruz http://www.empresacruz.com.br/
4. Búsqueda por sistema:
4.1 https://www.buscaonibus.com.br/horario/sao-carlos/sao-jose-do-rio-preto
4.2 https://www.guichevirtual.com.br/sao-carlos-sp-v-aracatuba-sp
Generalmente te colocan solo los puntos y precios, pero hay detalles que aveces te pueden hacer perder tiempo, dinero y la paciencia. Espero esta descripción les pueda ayudar.
Inicio en el terminal terrestre de Arequipa de madrugada un jueves de enero, hay varias empresas de Arequipa-Juliaca, yo usé San Roman (20 Soles) dado que es el mas seguro, aunque demora un poco 4 a 4:30hrs.
Llegando a Juliaca, una moto taxi hacia el "Terminal a Puno" lo mejor es tomar un Omnibus hacia Puno (2 Soles) 1hr. Posteriormente llegando a Puno puedes tomar un Taxi(4 Soles) al "Terminal a Desaguadero", evidentemente tienen su nombre pero asi lo indicas y el taxista comprenderá perfectamente.
Ese terminal es por demanda, es decir bus lleno, bus que parte.
Camino Puno-Desaguadero |
De Puno a Desaguadero te cobran 8 Soles sentado, parado 5 Soles y demora unas 3hrs.
Llegando a la frontera: Aquí desembarcas del ómnibus y sigues a la gente, al pasar los segundos veras el puente de frontera y además a los cambistas en unas mesitas pequeñas yo cambie 250 Soles que hacen unos 518 Pesos Bolivianos aquel dia.
Seguidamente te diriges a Migraciones(Perú) donde debes pedir tu hojita la llenas y haces cola para sellar la salida en tu pasaporte, recomiendo llenarla en la misma fila, ya marcaban casi las 6pm, hora en la que cierran frontera normalmente.
Puente Perú-Bolivia (Vista desde desaguadero) |
Cruzas a pie sin problema el puente Perú-Bolivia(Adiciona una hora a tu reloj), es probable que veas policías de Bolivia ni los mires, solo sigue a la gente ni les preguntes nada, yo lo hice y me llevaron adentro a abrir mi maleta y revisar mis cosas estuve 1hr atrapado. Al entrar a territorio boliviano hay dos calles divido por un edificio(migraciones de Bolivia) el control/puesto se encuentra a la izquierda(tu izquierda). De la misma forma pides tu hojita que es verde en este caso en una ventanilla externa, la fila mas larga esa es para sellar entrada a Bolivia, así que aquí mínimo consumirás unas dos horas(paciencia).
Luego sigues en la misma dirección que ingresaste a territorio boliviano y notaras unas combis hacia la Paz, ellos te cobran 15Bs y demora unas 2hrs.
En la Paz, es posible tomar un bus hacia Santa Cruz directo o en dos tramos, aveces por el horario no encuentras, yo lo hice en dos tramos. Tomé el bus a Cochabamba(Empresa El Dorado) que salia a las 10:00pm y demoraba 8hrs a 40Bs o 70Bs, depende del servicio. Yo tomé la segunda opción, sin embargo dada la comodidad de los ómnibus la próxima vez, tomare el de 40Bs por solo 8 horas no compensa mucho pagar casi el doble.
Ya en el terminal de Cochabamba, me sorprendí ver un cajero BCP, espero funcione me quedé con las ganas de usarlo, salí del terminal a tomar desayuno un Café, Pan y Queso, literalmente es eso (es decir el queso no viene dentro del Pan) a 10Bs. Dentro del terminal hay varias empresas que van a Santa Cruz desde 70Bs+2.5Bs por uso de Terminal, demora unas 10hrs. Partí como a las 7:15am(Ojo con el horario del terminal). Y es normal hacer parada en algún restaurante a la hora del almuerzo.
Durante el camino a Santa Cruz notaras el paisaje selvático, además de los controles policiales bajaras unas dos veces(control antidrogas). Una vez llegues al terminal notarás que es absolutamente desordenado e informal sin mencionar la calor(Enero). Hay gente que toma el tren de la muerte hacia Quijarro, en mi caso cuando llegué un Viernes el tren ya había salido a la 1pm, así que decido tomar otro ómnibus que demora unas 9hrs y cuesta 80Bs hasta Quijarro.
Horario Tren |
Al llegar a Quijarro 6-7am(en Puerto Suarez), debes tomar un taxi/colectivo hacia la frontera (10 Bs), llegando vi una fila larga en migraciones del lado de Bolivia, entonces decidí caminar en el mismo sentido del puente limite en busca de las empresas de ómnibus Andorinha que hacen ruta directa Frontera-São Paulo, lo que no vi fueron unos letreros de duchas, cuando llegué no me fije y fui a un hotel 60Bs y me quedé un día en frontera(Esto fue el sábado). Si hubiera visto las duchas hacia lo propio y continuaba(para la próxima).
Una vez dormido por la mañana almorcé y fui a frontera a ver que tal estaba la fila como a las 4pm, y aún tenia tiempo por que cierran a las 5pm, hice poner el sello y solo me faltaba pasar la noche y al día siguiente cruzar la frontera.
Yo nunca imaginé que podías marcar entrada de Bolivia e ingreso a Brasil y aún así dormir en Bolivia, es decir regresar a territorio de donde ya saliste(para la próxima).
Quijarro - Frontera Bolivia-Brasil |
Debí levantarme a las 5am(Domingo) para formar fila, pero fui a las 7am y las consecuencias fueron 8hrs en frontera para registrar mi ingreso a Brasil + 3 botellas de agua 15Bs (5Bs/botella) y el tráfico de fila, no hable con nadie aprovechan el dialogo para meter gente lo cual extiende la fila previa a ti.
Cruzando la frontera hay un ómnibus que pasa casi a cada 45min a 3.25R, yo tomé el de las 4pm(para que se hagan idea lo que demoré). Ese bus llega a un terminal local y tienes que hacer trasbordo a otro(Cristo Redentor) que es el que te lleva al Terminal de Corumbá(sin pagar nada adicional), ya en el Terminal de Corumbá puedes usar tu cartón del Banco de Brasil si tuvieses para pagar. Intenta no comprar nada; gasté 17R en 2 salteñas(salgados) y una Fanta.
Entonces aquí ya puedes comprar tu boleto hacia Campo Grande, irónicamente la empresa dominante es Andorinha, consulta [1] para los horarios. Costo de viaje 114R y salia a las 18.30pm con una demora de 9hrs. El Terminal Rodoviario de Campo grande es agradable similar a un aeropuerto, muy bueno desde mi punto de vista hasta dormí en la bancas, no había remedio atienden desde las 5 o 6am, compré mi ticket de Campo Grande a São José de Rio Preto para las 8am a 134R con un tiempo de 11hrs de viaje. En este tramo subirán los de la Policía Federal dos veces y te preguntarán de donde vienes? a donde te diriges? por que? etc, etc.
Finalmente en el terminal de Rio Preto un lugar con mucha antigüedad, compré un ticket a São Carlos para las 11.45pm a 60R y por fin las últimas 4hrs.
Llegando a São Carlos a las 4am un amigo me recogió, aunque a esa hora ya hay bastante gente y puedes esperar a clarear para usar el transporte local también.
Referencias:
1. Andorinha (Corumbá-Campo Grande) Horarios http://www.andorinha.com/sa/
2. Cometa http://www.viacaocometa.com.br/es/
3. Cruz http://www.empresacruz.com.br/
4. Búsqueda por sistema:
4.1 https://www.buscaonibus.com.br/horario/sao-carlos/sao-jose-do-rio-preto
4.2 https://www.guichevirtual.com.br/sao-carlos-sp-v-aracatuba-sp
Saturday, December 31, 2016
Ubuntu NVidia
$sudo lspci | grep VGA
00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2)
$sudo apt-get install nvidia-304
Wednesday, December 28, 2016
Gps Trackers
http://www.locationof.com/melhorum/map/
http://cellphonetrackers.org/gsm/gps-tracking.php
Monday, December 12, 2016
CentOS 6.8 Wifi
1) Offline
$wpa_passphrase "NetworkName" Key
#wpa_supplicant -B -D wext -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant_vicg.conf
#ifup wlan0
#vi /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
network={
ssid="NetworkName"
scan_ssid=1
key_mgmt=WPA-PSK
psk=??????
}
2) GUI Assistant
sudo vi /etc/sysconfig/network-scripts/ifcfg-wlan0
Resources:
[1] Enable Wifi https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/3/html/Installation_and_Configuration_Guide/Disabling_Network_Manager.html
$wpa_passphrase "NetworkName" Key
#wpa_supplicant -B -D wext -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant_vicg.conf
#ifup wlan0
#vi /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
network={
ssid="NetworkName"
scan_ssid=1
key_mgmt=WPA-PSK
psk=??????
}
2) GUI Assistant
sudo vi /etc/sysconfig/network-scripts/ifcfg-wlan0
Resources:
[1] Enable Wifi https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/3/html/Installation_and_Configuration_Guide/Disabling_Network_Manager.html
Friday, December 09, 2016
Thursday, December 08, 2016
Uva Online Tools
References:
[0] Problems for try/test special cases
http://www.uvatoolkit.com/problemssolve.php
[1] https://en.wikibooks.org/wiki/Optimizing_C%2B%2B/Code_optimization/Faster_operations
[2] http://embeddedgurus.com/stack-overflow/2009/06/division-of-integers-by-constants/
[3] bitsets fast operations collection
https://graphics.stanford.edu/~seander/bithacks.html#ParityWith64Bits
[4] Debug code http://gcc.godbolt.org/
Solutions:
[1] https://github.com/ksaveljev
Wednesday, November 09, 2016
Saturday, October 08, 2016
Use Whatsapp using piding over Ubuntu 14.04 /Ubuntu 16.04
Changes on [1] for run this trick on my ubuntu
First app (probably you need install aditional packages)
$sudo apt-get install libfreeimage-dev
$sudo apt-get install ncurses-dev
$sudo apt-get install python-dev
Second app
$sudo apt-cache search setuptools
$sudo apt-get install python-setuptools
$ sudo python setup.py install
$./yowsup-cli registration
$./yowsup-cli registration -c whatsapp_config.txt -r sms
$./yowsup-cli registration -c whatsapp_config.txt -R XXX-XXX
Reference
[1] http://blog.desdelinux.net/como-usar-whatsapp-en-linux-con-pidgin/
Aditional for Ubuntu 16.04
sudo apt-get install libprotobuf-dev
sudo apt-get install protobuf-compiler
First app (probably you need install aditional packages)
$sudo apt-get install libfreeimage-dev
$sudo apt-get install ncurses-dev
$sudo apt-get install python-dev
Second app
$sudo apt-cache search setuptools
$sudo apt-get install python-setuptools
$ sudo python setup.py install
$./yowsup-cli registration
$./yowsup-cli registration -c whatsapp_config.txt -r sms
$./yowsup-cli registration -c whatsapp_config.txt -R XXX-XXX
Reference
[1] http://blog.desdelinux.net/como-usar-whatsapp-en-linux-con-pidgin/
Aditional for Ubuntu 16.04
sudo apt-get install libprotobuf-dev
sudo apt-get install protobuf-compiler
Wednesday, October 05, 2016
Thursday, September 29, 2016
Thursday, August 04, 2016
Algoritmos :: Lecturas
Recursos:
0. Programming Challenges and Competitions (re https://courses.cs.ut.ee/MTAT.03.269/2016_spring/uploads/Main/Lecture1.pdf
1. http://www.comp.nus.edu.sg/~stevenha/myteaching/
2. Programming Challenges: The Programming Contest Training Manual http://www.comp.nus.edu.sg/~stevenha/myteaching/competitive_programming/cp1.pdf
Sunday, July 31, 2016
Books
La incognita Newton - Catherin Shaw
https://revistasuma.es/IMG/pdf/52/123-127.pdf
http://todolodemates.wikispaces.com/file/view/la+incognita+newton.pdf
Wednesday, July 27, 2016
Wednesday, July 20, 2016
Wednesday, July 13, 2016
Saturday, June 25, 2016
Ubuntu change to dark theme
sudo add-apt-repository ppa:noobslab/themes
#just for Ubuntu 14
sudo apt-get update sudo apt-get install ambiance-dark
sudo add-apt-repository ppa:noobslab/themes
sudo apt-get update
sudo apt-get install arc-theme
sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak
sudo add-apt-repository ppa:ravefinity-project/ppa #current for me
sudo apt-get update
sudo apt-get install vivacious-colors-gtk-dark
or
sudo apt-get install unity-tweak-tool #need to re-start
resources:
Dark themes
http://askubuntu.com/questions/454372/dark-gtk-theme-for-ubuntu-14-04
Tuesday, June 21, 2016
Alternatives to Deep Web
resources:
Freenet - a popular darknet friend-to-friend network that can run as an "opennet" (where peer nodes are discovered automatically).
https://freenetproject.org/
Alternatives to torrents
[1] rarbg.is
[2] katcr.co
[3] www.limetorrents.cc
Saturday, June 11, 2016
Lectures
Complex Network - ES
Análisis de Redes Complejas: Un paseo matemático entre Google y las redes sociales.
http://www.um.es/c/document_library/get_file?uuid=7b90ec2b-6554-482a-ae3b-c89292473885&groupId=118351
Friday, June 03, 2016
Wednesday, June 01, 2016
Lecture Fluid Flow
Resources
1) Gerris Flow Solver http://gfs.sourceforge.net/wiki/index.php/Main_Page
2011 - Japanese tsunami and others simulations
Lectures Image Processing
Resources:
1) Notes http://homepages.inf.ed.ac.uk/rbf/CVonline/LOCAL_COPIES/MORSE/
2) Wavelets teory (pt) http://rmu.sbm.org.br/Conteudo/n33/n33_Artigo02.pdf
Monday, May 16, 2016
mySQL Clients - Ubuntu
Resources:
1. DBeaver(Multi Driver) http://dbeaver.jkiss.org/download/
2. Valentina Studio(Multi Driver) https://www.valentina-db.com/en/all-downloads
Tuesday, April 26, 2016
Lecture CG-1
http://www.cse.yorku.ca/~kosta/CompVis_Notes/ransac.pdf
http://www.iit.upcomillas.es/pfc/resumenes/4c290fbe9567e.pdf
Friday, April 01, 2016
Sunday, March 27, 2016
Tips for ...
1. Cirugía digital: desvelado el secreto de Hollywood para rejuvenecer a las estrellas http://www.playgroundmag.net/noticias/actualidad/retoque_digital-hollywood-belleza-actores_0_1437456251.html?utm_source=facebook.com&utm_medium=meme&utm_campaign=Cirug%C3%ADaHollywood
2. Realidad Aumentada + Emoción + Alturas
Personality and Frases
Peronality Test
https://dimajadid.net/what-was-the-first-animal-you-saw/
Frases (esp)
https://dimajadid.net/what-was-the-first-animal-you-saw/
Frases (esp)
- Todo es relativo. El tiempo que dura un minuto depende de qué lado de la puerta del baño te encuentras.
- Errar es humano, persistir en el error es americano, acertar en el blanco es musulmán.
- Cualquier idiota es capaz de pintar un cuadro, pero solo un genio es capaz de venderlo.
- Robar ideas de una persona es plagio. Robar de varias es “investigación”.
- En la vida todo es relativo. Un solo pelo en la cabeza es poco; pero en la sopa, es mucho!
- En el borde de un precipicio sólo hay una manera de ir para adelante: dar un paso atrás.
- Dime con quién andas, que yo te digo si voy contigo.
- Yo quiero morir como mi abuelo, durmiendo, tranquilo, y no gritando desesperadamente… como los cuarenta pasajeros del autobús que él conducía!
- Yo cavo, tu cavas, el cava, nosotros cavamos, vosotros caváis, ellos cavan. Es una estupidez, pero bastante profunda.
- Cuando te arrojen una piedra, haz con ella un escalón y súbete. Sólo después, cuando tengas una visión plena de toda el área, agarra otra piedra, y clávasela en el culo al que te tiro la primera.
- No te preocupes por el peso de los cuernos, preocúpate por el peso de la vaca.
- Si eres desagradable y tienes mucha plata, todos pensarán lo contrario de ti.
- Panza llena, baño seguro
- Si fuera mi hijo, quisiera tener un padre como yo… y una madre como la vecina. Realmente esta buena la condenada.
- Si la vida te da la espalda, agarrale las nalgas.
- Lo imposible siempre, cuenta un poco más.
- Del tamaño que sean tus sueños sera hasta donde llegues.
- Yo no robo internet inalambrico, aprovecho los recursos que el aire me ofrece.
- Si la montaña viene hacia tí, corre porque es un derrumbe.
- Incluso un reloj parado acierta dos veces al día.
- Si tu novia perjudica tus estudios, perjudica a tu novia, deja los estudios.
- Si te visto, no me acuerdo. Si te desvisto, no me olvido.
- Si la vida te la limones, pide plata u otras cosas.
- No aceptes regalos de gente desconocida, te puedes comer un juicio por robo.
- Si estás “meditando” en el baño, concéntrate en eso, y de paso, estudia o lee algo.
- Si eres desagradable y tienes mucha plata, todos te dirán lo contrario y serán tus “amigos”.
- Si cantas sólo por cantar “ojala que llueva café” de Juan Luis Guerra en un lugar donde hay mucha gente cerca, un bobo te preguntará si queres Medialunas.
- Panza llena, baño seguro.
- Si se te sale un “vientito”, asegúrate que no sea en un ascensor.
- Nunca te sientas el más idiota del mundo, sólo lee mis comentarios y cambiaras de parecer.
- Cuanto más le saques punta a un lapiz, más se romperá la punta.
Monday, February 29, 2016
Saturday, February 13, 2016
MonoDevelop Using mySql Connection
Download mySql Connector [1], uncompress and run next command for register mySql Connector.
$sudo gacutil -i MySql.Data.dll
References:
[1] Driver Connector http://dev.mysql.com/downloads/connector/net/
[2] http://techreadme.blogspot.com.br/2013/04/using-mysql-with-mon-in-monodevelop.html
[3] Example for connect http://www.mono-project.com/docs/database-access/providers/mysql/
Thursday, January 21, 2016
Wireless Security
References:
1. airbase-ng http://lifehacker.com/how-to-hack-your-own-network-and-beef-up-its-security-w-1649785071
1. airbase-ng http://lifehacker.com/how-to-hack-your-own-network-and-beef-up-its-security-w-1649785071
Friday, January 15, 2016
Girls
1. Chicas Caretas http://chicacaretas.blogspot.pe/
2. CHinese girls http://rococo579.blog70.fc2.com/
Friday, November 20, 2015
Sunday, November 15, 2015
Monday, October 26, 2015
Complex Networks
References:
[1] Network Science: Theory and Applications http://train.ed.psu.edu/WFED-543/SocNet_TheoryApp.pdf
Friday, October 02, 2015
Shape Matching
Resources:
[1] Shape Indexing and Matching Using Shock Graphs
http://www.cs.toronto.edu/~dmac/source_code.html
[2] Skeletonization
http://www.inf.u-szeged.hu/~palagyi/skel/skel.html
[3] K3M
http://matwbn.icm.edu.pl/ksiazki/amc/amc20/amc2029.pdf
Monday, September 21, 2015
Sunday, September 13, 2015
Samsung GT-S6102B tools
CWM Info
https://wiki.cyanogenmod.org/w/ClockWorkMod_Instructions
Restore from Image/Format
https://www.youtube.com/watch?v=ZCoI62PG7jE
Drivers
http://forum.xda-developers.com/showthread.php?t=961956
Tools for connect
Heimdall/Odin/JOdin3
https://github.com/Benjamin-Dobell/Heimdall/issues/32
Friday, September 11, 2015
Lectures
Overview (Pt)
http://iris.sel.eesc.usp.br/sel886/RANSAC_AnOverview.pdf
Overview 2 (En)
http://cmp.felk.cvut.cz/cmp/courses/Y33ROV/Y33ROV_ZS20082009/Lectures/RANSAC/ransac.pdf
Ransac Family (CVPR2011)
http://www.imgfsr.com/CVPR2011/Tutorial6/RANSAC_CVPR2011.pdf
Ransac in Matlab
http://old.vision.ece.ucsb.edu/~zuliani
------------------- ------------------- ------------------- ------------------- ------------------- -------------------
Image Registration CVPR2011
http://www.imgfsr.com/CVPR2011/Tutorial6/
Friday, September 04, 2015
Monday, August 31, 2015
Running 2014
RPP 2014
http://www.pacifictiming.com/result-wizard/?prefix=140921_rpp
Lanpass 10k 2014
http://www.chiptiming.com.pe/resultados.php
Corre PUCP 2014
http://chiptiming.com.pe/resultados-pucp.php
LightSpark Flash Player Alternative
Try traditional installation
$sudo add-apt-repository ppa:sparkers/ppa
$sudo apt-get update
$sudo apt-get install lightspark browser-plugin-lightspark
Make link to library or copy to plugin directory
$sudo cp /usr/lib/lightspark/liblightsparkplugin.so ~/.mozilla/plugins/
$sudo cp /usr/lib/lightspark/liblightsparkplugin.so /usr/lib/mozilla/plugins/
or
$ln -s /usr/lib/lightspark/liblightsparkplugin.so ~/.mozilla/plugins/liblightsparkplugin.so
Note: try run $locate libflashplayer.so , for know where is the plugin directory
Marked Point Processes
[1] https://homepages.laas.fr/slarnier/Automatic_method_for_visual_grading_of_seed_food_product.pdf
[2] Samples
http://perso.telecom-paristech.fr/~tupin/JTELE/PRES10/Descombes.pdf
[3] Unsupervised detection of Flamingos using Marked Point Processes for estimating the size of populations
Slides http://bib.rilk.com/2781/01/descamps_presentationGdR.pdf
Friday, August 14, 2015
Tuesday, August 04, 2015
Friday, June 26, 2015
Point Sampling Projects
Point Sampling Projects
[1] http://jonquinn.org/research/
[2] http://www.filipvanbouwel.be/master_thesis.php
[3] http://kesen.realtimerendering.com/PointBasedPaper.html
[4] Point Based Graphics
http://webstaff.itn.liu.se/~jonun/web/teaching/2009-TNCG13/Siggraph09/courses/point-based-graphics.pdf
Thursday, June 25, 2015
Splatting
Splatting Demo
[1] http://potree.org/demo/lion/lion_takanawa.html
[2] http://potree.org/demo/potree_2014.12.30/examples/lion_laz.html
[3] Full http://potree.org/wp/
Wednesday, June 24, 2015
Maya Ubuntu
http://forums.autodesk.com/t5/installation-licensing/installing-maya-on-ubuntu/td-p/4905036
Tuesday, June 23, 2015
Reflection/Point-based Global Illumination
- Reflection and refraction
- Point-based Global Illumination
- Anti-aliasing settings
[2] Global illumination 99 lines
http://www.kevinbeason.com/smallpt/
Running Wireshark over Ubuntu 14.04
After installation, execute next steps:
1) sudo dpkg-reconfigure wireshark-common
2) sudo chmod +x /usr/bin/dumpcap
3) sudo setcap CAP_NET_RAW,CAP_NET_ADMIN,CAP_DAC_OVERRIDE+eip /usr/bin/dumpcap
Reference:
[1] https://ask.wireshark.org/questions/16343/install-wireshark-on-ubuntu
[2] http://askubuntu.com/questions/348712/there-are-no-interfaces-on-which-a-capture-can-be-done
Rendering
Matlab Sample (Run in matlab, compiling with mex over Ubuntu)
http://vision.princeton.edu/pvt/RenderPCcamera/
Obj Files
[1] http://people.sc.fsu.edu/~jburkardt/data/obj/obj.html
2. Multi-Resolution Surfel Map (MRSMap) Library
src https://code.google.com/p/mrsmap/
dependencies information
https://github.com/ais-hilgert/mrsmap/wiki/Build-mrsmap
3. Point Cloud Library
https://github.com/PointCloudLibrary/pcl
4. OpenGL tutorial C++ Code
https://gitlab.com/wikibooks-opengl/modern-tutorials/tree/master
5. Real Time Rendering http://web.cse.ohio-state.edu/~tong/cse781projects/
Wednesday, June 17, 2015
Computer Graphics Resources
Point based Compute Graphic
[1] http://www.cin.ufpe.br/~marcelow/Marcelow/programacao%20cg_files/
Course (pt)
[1] https://adeetc.thothapp.com/classes/CG/1213i/LI31N-LI51N/resources/
[2] http://di002.edv.uniovi.es/~rr/
Resources:
[1] Course (Projection ..)
http://web.cs.wpi.edu/~gogo/courses/cs543/
[2] Course
http://www.personal.psu.edu/tam44/Math2025/
[3] http://di002.edv.uniovi.es/~rr/
[4] Transformations
http://www.eee.ufg.br/~assfalk/disciplinas/cg/plano_espaco.pdf
http://garryowen.csisdmz.ul.ie/~cs4085/resources/lect04.pdf
http://garryowen.csisdmz.ul.ie/~cs4085/resources/res-map.html
[5] Projections
http://www.eee.ufg.br/~assfalk/disciplinas/cg/projecoes.pdf
http://web.cs.wpi.edu/~gogo/courses/cs543/slides/cs543_15_Projection_1up.pdf
[6] Algebra Lineal
6.1 Producto interno y norma
http://www.fing.edu.uy/~jana/gal22010/clase9.pdf
6.2 Ortogonalidad/Ortonormalidad
http://www.fing.edu.uy/~jana/gal22010/clase10.pdf
6.3 Transformaciones Lineales
http://www.fing.edu.uy/~jana/gal22010/clase11.pdf
6.4 Mínimos Cuadrados
http://www.fing.edu.uy/~jana/gal22010/clase12.pdf
Wednesday, June 10, 2015
Network Flow
Slides
[1] http://www.cb.uu.se/~filip/ImageProcessingUsingGraphs/LectureNotes/Lecture4.pdf
[2] http://www.win.tue.nl/~nikhil/courses/2WO08/07NetworkFlowI.pdf
[3] https://courses.engr.illinois.edu/cs473/fa2010/Lectures/lecture17.pdf
Ford & Fulkerson ALgorithm (Good explain)
[4] http://www.inf.ufpr.br/pos/techreport/RT_DINF003_2004.pdf
Max Flow (pt)
[5] http://www.facom.ufms.br/gestor/titan.php?target=openFile&fileId=468
Tuesday, June 02, 2015
Análise de Algoritmos
Algoritmos e Estruturas de Dados II/Recorrências
http://www.deei.fct.ualg.pt/~flobo/aed-II/teoricas/
http://www.fernandolobo.info/aed-II/teoricas/
Programación Dinámica
http://elvex.ugr.es/decsai/algorithms/
Referencias
http://www.dct.ufms.br/~edson/complexidade/recorrencias.pdf
http://www-usr.inf.ufsm.br/~juvizzotto/elc120-2011b/
http://mitpress.mit.edu/algorithms/solutions/chap2-solutions.pdf
Exercícios Complexidade
[1] http://www.inf.ufpr.br/vignatti/courses/ci056/exerc-busca-recursividade.pdf
http://www.fernandolobo.info/aed-II/teoricas/
Programación Dinámica
http://elvex.ugr.es/decsai/algorithms/
Referencias
http://www.dct.ufms.br/~edson/complexidade/recorrencias.pdf
Exercícios Complexidade
[1] http://www.inf.ufpr.br/vignatti/courses/ci056/exerc-busca-recursividade.pdf
Sunday, May 31, 2015
Winamp Alternative on Ubuntu Audacious
$sudo apt-get install audacious
If doesn't work, add repository and try again
$sudo add-apt-repository ppa:nilarimogard/webupd8
$sudo apt-get update
$sudo apt-get install audacious
Note:Enable Winamp mode and enalbe equalizer
Resources
[1] http://audacious-media-player.org/download
[2] Equializer from Winamp
http://ubuntuforums.org/showthread.php?t=1609390
[2] How to install
http://www.webupd8.org/2014/04/install-audacious-35-in-ubuntu-1404-or.html
If doesn't work, add repository and try again
$sudo add-apt-repository ppa:nilarimogard/webupd8
$sudo apt-get update
$sudo apt-get install audacious
Note:Enable Winamp mode and enalbe equalizer
Resources
[1] http://audacious-media-player.org/download
[2] Equializer from Winamp
http://ubuntuforums.org/showthread.php?t=1609390
[2] How to install
http://www.webupd8.org/2014/04/install-audacious-35-in-ubuntu-1404-or.html
Monday, May 25, 2015
SSH Tunneling
$ssh -D 127.0.0.1:8080
$ssh -[N]D 5555
N Doesn't work in some servers, then remove it.
Firefox Setting
2. Select "Manual proxy configuration"
3. Enter localhost for the SOCKS host, 9999 for the port, and SOCKS v5 selected. Click "OK" to save it.
use http://www.whatismyip.org/ for verify new ip
References:
[1] https://gist.github.com/brentjanderson/6ed800376e53746d2d28ba7b6bdcdc12 (rev 2024)
[2] http://www.planetb.ca/2010/08/how-to-create-an-ssh-tunnel-with-putty-and-stay-anonymous-on-a-network/
Monday, May 18, 2015
OSX Developer Resources Windows/Linux(Ubuntu)
Enable OSX installation over VMPlayer 7.0 over Ubuntu 14.04
Uncompress Unlocker files [1] and run:
$sudo ./lnx-install.sh
$sudo apt-get install dmg2img
$dmg2img
[1] Unlocker
http://www.insanelymac.com/forum/files/file/339-unlocker/
Olds
[2] OSX Updates https://sites.google.com/site/appleclubfhs/support/advice-and-articles/updating-mac-os
[3] VMWare Images (Snow/Lion/...) http://www.souldevteam.net/blog/downloads/
Saturday, May 16, 2015
Llamar de Brasil a Perú Prefijo de Salida/Código de operador
El prefijo de salida de Brasil es 00
Código de operador XX que puede ser:
14 - Brasil Telecom,
15 - Vivo,
21 - Claro,
31 - Oi,
41 - TIM,
12 - CTBC ó
25 - GVT.
Osea:
00 + XX + Pais + Ciudad + Número
Ejemplo:
Usando Oi(31) A Perú(51) Arequipa(54) al numero 555555
00315154555555
Referencias:
[1] http://www.aproxima.es/llamando.html?desde=brasil&hacia=peru
Código de operador XX que puede ser:
14 - Brasil Telecom,
15 - Vivo,
21 - Claro,
31 - Oi,
41 - TIM,
12 - CTBC ó
25 - GVT.
Osea:
00 + XX + Pais + Ciudad + Número
Ejemplo:
Usando Oi(31) A Perú(51) Arequipa(54) al numero 555555
00315154555555
Referencias:
[1] http://www.aproxima.es/llamando.html?desde=brasil&hacia=peru
Tuesday, May 12, 2015
Matlab 2012a/2014a en ubuntu
Ambas formas, son parecidas, estoy probando con la [1].
referencias:
[1] http://rutaxt.blogspot.com/2012/05/como-instalar-matlab-2012-en-linux.html
[2] http://ceroy2.blogspot.com/2013/03/instalando-matlab-en-ubuntudebianmint.html
[3] 2014a ISOhttp://www-rohan.sdsu.edu/~download/matlab.html
[4] 2014a ISO http://www.eng.utah.edu/downloads/matlab/R2014a/
referencias:
[1] http://rutaxt.blogspot.com/2012/05/como-instalar-matlab-2012-en-linux.html
[2] http://ceroy2.blogspot.com/2013/03/instalando-matlab-en-ubuntudebianmint.html
[3] 2014a ISO
[4] 2014a ISO http://www.eng.utah.edu/downloads/matlab/R2014a/
Sunday, May 10, 2015
OpenCV 2.4.x over Ubuntu
I installed Opencv 2.4.8 over ubuntu 12.04, works good with images, but i getting error at display/read videos, then i research and use other resources:
[1], is best for me, have scripts for install opencv library, if you like more details about steps, is possible use [2] or [3].
-----------------------------------------
When you like java libraries
Need to do[4]:
If you get this message: libv4l2.so.0: error adding symbols: DSO missing from command line collect2, do that:
If not works, start again using [5].
Resources:
[1] https://help.ubuntu.com/community/OpenCV
[1.1] https://github.com/jayrambhia/Install-OpenCV/tree/master/Ubuntu/2.4
[2] http://abhitak.wordpress.com/2009/08/29/installing-opencv-on-linux-ubuntu-9-04/
[3] http://www.ozbotz.org/opencv-installation/
[4] http://www.giuseppeurso.eu/en/how-to-compile-opencv-on-centos-with-java-support/
[5] http://www.sysads.co.uk/2014/05/install-opencv-2-4-9-ubuntu-14-04-13-10/
[1], is best for me, have scripts for install opencv library, if you like more details about steps, is possible use [2] or [3].
-----------------------------------------
When you like java libraries
Need to do[4]:
$ export JAVA_HOME=/root/jdk1.7.0_07
$ mkdir build
$ cd build
$ cmake -DBUILD_SHARED_LIBS=OFF ../
If you get this message: libv4l2.so.0: error adding symbols: DSO missing from command line collect2, do that:
$grep -rl -- -lv4l1 samples/* modules/* | xargs sed -i 's/-lv4l1/-lv4l1 -lv4l2/g'
If not works, start again using [5].
Resources:
[1] https://help.ubuntu.com/community/OpenCV
[1.1] https://github.com/jayrambhia/Install-OpenCV/tree/master/Ubuntu/2.4
[2] http://abhitak.wordpress.com/2009/08/29/installing-opencv-on-linux-ubuntu-9-04/
[3] http://www.ozbotz.org/opencv-installation/
[4] http://www.giuseppeurso.eu/en/how-to-compile-opencv-on-centos-with-java-support/
[5] http://www.sysads.co.uk/2014/05/install-opencv-2-4-9-ubuntu-14-04-13-10/
Labels:
C/C++,
Computer Vision,
Linux.Developer
Tuesday, May 05, 2015
MST Using Prim/Kruskal Algorithm
Prim
[1] Prim Demo https://www.cs.princeton.edu/~wayne/kleinberg-tardos/pdf/04DemoPrim.pdf
[2] C++ STL Heap
https://msdn.microsoft.com/library/6y3edk6s%28v=vs.71%29.aspx
[3] C++ STL Max & Min Heap
https://codeconnect.wordpress.com/2013/09/05/max-min-heap-using-c-stl/
[4] Min Heap http://www.codeproject.com/Tips/816934/Min-Binary-Heap-Implementation-in-Cplusplus
Kruskal
[1] UnionFind
https://www.cs.princeton.edu/~rs/AlgsDS07/01UnionFind.pdf
[1.1] Complete Course https://www.cs.princeton.edu/~rs/AlgsDS07/
[2] Disjoint-Set (Source Code C++)
http://www.mathblog.dk/disjoint-set-data-structure/
http://web.rememberingemil.org/Projects/DisjointSets.aspx.html
Monday, May 04, 2015
Sunday, May 03, 2015
Ubuntu program shutdown
$sudo shutdown -P 1:00 #shutdown at 1:00am
references
[1] https://tnoergaard.wordpress.com/2010/07/23/how-to-make-ubuntu-shutdown-after-a-particular-time/
references
[1] https://tnoergaard.wordpress.com/2010/07/23/how-to-make-ubuntu-shutdown-after-a-particular-time/
Tuesday, April 21, 2015
OpenGL Samples
[1] OpenGl Tutorial recomended from gamedev
http://ogldev.atspace.co.uk/
[2] OpenGL samples under Windows
http://www.mbsoftworks.sk/index.php?page=tutorials&series=1
http://ogldev.atspace.co.uk/
[2] OpenGL samples under Windows
http://www.mbsoftworks.sk/index.php?page=tutorials&series=1
Monday, April 20, 2015
OpenGL 4.4 Ubuntu 14.04
Guide using [2]
Step 1: Verify your Hardware
Step 2: Download appropiate driver (NVidia for me)
Step 3: kill gdm process and run installer (file downloaded)
Note: if your Desktop not start next time, remove and reinstall
References
[1] http://www.nvidia.com/Download/driverResults.aspx/83686/en-us
[2] http://ubuntuhandbook.org/index.php/2013/08/install-nvidia-opengl-4-4-driver-325-05-03-in-ubuntu-linux-mint/
[3] Recover your desktop
http://askubuntu.com/questions/141606/how-to-fix-the-system-is-running-in-low-graphics-mode-error
Step 1: Verify your Hardware
Step 2: Download appropiate driver (NVidia for me)
Step 3: kill gdm process and run installer (file downloaded)
Note: if your Desktop not start next time, remove and reinstall
References
[1] http://www.nvidia.com/Download/driverResults.aspx/83686/en-us
[2] http://ubuntuhandbook.org/index.php/2013/08/install-nvidia-opengl-4-4-driver-325-05-03-in-ubuntu-linux-mint/
[3] Recover your desktop
http://askubuntu.com/questions/141606/how-to-fix-the-system-is-running-in-low-graphics-mode-error
Subscribe to:
Posts (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Facturador Sunat SEE SFS (Linux)
/usr/lib/jvm/java-8-openjdk-amd64/bin/java -jar ./facturadorApp-2.1.jar server prod.yaml References: [1] Make temp certificate for test...