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...
-
In the YUV color format, Y is bright information, U is blue color area, V is red color area. Show the below picture. The picture is u-v col...
-
This is example of SVM learning method. This example is I already have explained in past time. See the this page - > http://feelmare.bl...
-
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
-
This is example code for drawing fan shape grid using vtkStructuredGrid in vtk. I've looked at a lot of examples that draw like thi...
-
This is dithering example, it make image like a stippling effect. I referenced to blew website. wiki page: https://en.wikipedia.org/wik...
-
The MNIST dataset is a dataset of handwritten digits, comprising 60 000 training examples and 10 000 test examples. The dataset can be downl...
-
This example source code is for saving image file that specified a rectangle region by mouse drag on the video frame. The method is easy. ...
-
. # Find the largest directories in your home du -h --max-depth=1 ~ | sort -rh | head -20 # Find the largest files find ~ -type f -exec du -...
-
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...