The Example About vtkPolyDataNormals

The algorithm class vtkPolyDataNormals can be used to calculate normals of points and cells in polydata. The following example shows how to use it. Cube Create a cube in which every cell is a single square. All information can be found in polydata, we use vtkPolyDataNormals to handle it and Read more…

Combine Images

The linear blend operator for two images: dst = α⋅src1+β⋅src2+γ we can use the following interface to support combine two pictures. CV_EXPORTS_W void addWeighted(InputArray src1, double alpha, InputArray src2, double beta, double gamma, OutputArray dst, int dtype = -1); Notice: we need to use the images which have the same Read more…

Wolfram – Handle Images

Capture an image from the camera. CurrentImage[] We can use function blur to change our image, the interface Manipulate will help us to display different levels dynamically. To find important colors in the image. Convert the original image to a white and black image: To find sharp changes in the Read more…

Show Special Character In VTK

We can use vtkTextActor to show string which contains special character. I use encoding value to represent math symbol and store it in QString object in the following example. #include <vtkActor.h> #include <vtkPolyData.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> #include <vtkTextActor.h> #include <vtkSphereSource.h> #include <vtkPlaneSource.h> #include <vtkPolyDataMapper.h> #include Read more…

Wolfram – Basic Graphics Objects

We always use function Graphics and Graphics3D to represent items in the Wolfram Language. Use RegularPolygon to draw a triangle. Graphics[RegularPolygon[3]] Make a red octagon. Graphics[Style[RegularPolygon[8], Red]] Make a list whose elements are disks with hues varying from 0 to 1 in steps of 0.1. Table[Graphics[Style[Disk[ ], Hue[n]]], {n, 0, Read more…

Tex To PDF
: convert the Latex file which suffix is tex to a PDF file

X