Process the image -color mapping, image contour recognition, mosaic, frosted glass, oil painting, sketch, relief, lens, blur, face detection, cat face detection, license plate detection, etc.
Please note:
In UE5, you need to add plugin content in Additional Asset Directories to Cook in the project settings. Otherwise, it will crash when used after packaging. And when loading pictures, try to use PNG pictures, JPG still has problems that have not been solved.
Including some common functions (get all the file names in the path, load and save the picture file, crop the picture, superimpose the picture, reset the picture size, etc.)
- Most functions have the original function and the function P and the function TMS.
FunctionP==>>The input image can be the disk path where the image is located.
FunctionTMS==>>The input image can be the FTAndM structure returned by other functions. (Mainly used to accept Mat).
- The face detection function will have different accuracy rates based on different cascaded classifiers.
- Most area parameters are FBox, from Min coordinate point to Max coordinate point. For example, if it is Min (100, 100)-Max (100, 100), then the area of this area is equal to 0 instead of taking the width 100 and height 100 from Min (100, 100).
- Numerical parameters generally have default values. If the value is modified to a wrong value and the wrong result is obtained, the value can be restored to the default value.
- When setting the texture properties, you also need to set the value of MipGenSettings to NoMipmaps.