Algorithm allowing to copy an image.
This algorithm allows to copy an image.
Output image type and size is the same as input.
On output image value are given by :
Example of Python code :
Example imports
import PyIPSDK
import PyIPSDK.IPSDKIPLUtility as util
Code Example
inImg = PyIPSDK.loadTiffImageFile(inputImgPath)
outImg = util.copyImg(inImg)
Example of C++ code :
Example informations
Header file
#include <IPSDKIPL/IPSDKIPLUtility/Processor/CopyImg/CopyImg.h>
Code Example
ImagePtr pOutImg = copyImg(pInImg);