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: 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 Read more…

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

X