2/24/2017
vtkStructuredGrid example for drawing fan shape grid.
This is example code for drawing fan shape grid using vtkStructuredGrid in vtk.
I've looked at a lot of examples that draw like this, but I could not find it.
So this example help for vtk beginner and want to drawing grid.
< code start >
< code end >
#vtkStructuredGrid, #vtk
2/23/2017
class member thread using std
class member function threading
1. No argument
< code start >
< code end >
2. additional arguments
< code start >
< code end >
3. Lambda Express
std::thread t( [&] { x.greeting(); } ); //no argument
std::thread t( [&] { x.greeting( "goodbye" ); } ); //with argument
Static or global function threading
< code start >
< code end >
#thread, #std, #lambda
1. No argument
< code start >
< code end >
2. additional arguments
< code start >
< code end >
3. Lambda Express
std::thread t( [&] { x.greeting(); } ); //no argument
std::thread t( [&] { x.greeting( "goodbye" ); } ); //with argument
Static or global function threading
< code start >
< code end >
#thread, #std, #lambda
2/14/2017
OpenCV Lecture, and, or, xor, not example using bitwise_and, bitwise_or, bitwise_xor, bitwise_not (2)
Labels:
and,
bitwise_and,
bitwise_not,
bitwise_or,
bitwise_xor,
not,
OpenCV,
or,
Total,
xor
OpenCV Lecture, and, or, xor, not example using bitwise_and, bitwise_or, bitwise_xor, bitwise_not
Labels:
and,
bitwise_and,
bitwise_not,
bitwise_or,
bitwise_xor,
not,
OpenCV,
OpenCV Lecture,
or,
Total,
xor
2/08/2017
no override found for 'vtkPolyDataMapper'
When meet this error no override found for 'vtkPolyDataMapper' using VTK.
Add this code
#include "vtkAutoInit.h"
VTK_MODULE_INIT(vtkRenderingOpenGL2); // VTK was built with vtkRenderingOpenGL2
VTK_MODULE_INIT(vtkInteractionStyle);
Or#define vtkRenderingCore_AUTOINIT 2(vtkRenderingOpenGL2, vtkInteractionStyle)
More detail
refer to this url
http://stackoverflow.com/questions/18642155/no-override-found-for-vtkpolydatamapper
2/03/2017
cvlecture example code, video subtraction
< gist start >
< gist end >
Labels:
Background subtraction,
cvlecture,
OpenCV,
Total,
video
cvlecture example code, operation between images(add, subtract, multiply, divide)
Labels:
addWeighted,
cvlecture,
OpenCV,
Total
2/01/2017
When VTK build with the option that Module_vtkGUISupportMFC on visual studio 2013
You have to download and install
Multibyte MFC Library for Visual Studio 2013
https://www.microsoft.com/en-US/download/details.aspx?id=40770
good luck
Multibyte MFC Library for Visual Studio 2013
https://www.microsoft.com/en-US/download/details.aspx?id=40770
good luck
Subscribe to:
Posts (Atom)
-
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...
-
When we study cuda firstly, thread indexing is very confusing. So I tried to clean up. First, Let's grab a sense of looking at ...
-
let's see the code. .. from scipy.sparse import csr_matrix import numpy as np #first matrix row = np.array([ 0 , 0 , 1 , 2 , 2 ,...
-
As you can see in the following video, I created a class that stitching n cameras in real time. https://www.youtube.com/user/feelmare/sear...
-
To install the language pack for vs 2013, it made things worse. The error message "window program compatibility mode is on. turn i...
-
fig 1. Left: set 4 points (Left Top, Right Top, Right Bottom, Left Bottom), right:warped image to (0,0) (300,0), (300,300), (0,300) Fi...
-
refer to this web page -> http://docs.opencv.org/trunk/doc/py_tutorials/py_video/py_lucas_kanade/py_lucas_kanade.html dense optical f...
-
This is example source code of Matching using surf and bruteForceMathing of gpu version. I think this simple example source code is useful ...
-
refer to code: . # pip install pyheif pillow # brew install libheif import os import subprocess input_folder = "./input/path"...
-
LightGBM (Light Gradient Boosting Machine) is a gradient boosting framework developed by Microsoft that uses tree-based learning algorithms...