ImageTColor, TDepthSave Method |
http://www.emgu.com
Save this image to the specific file.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic override void Save(
string fileName
)
Public Overrides Sub Save (
fileName As String
)
public:
virtual void Save(
String^ fileName
) override
abstract Save :
fileName : string -> unit
override Save :
fileName : string -> unit
Parameters
- fileName
- Type: SystemString
The name of the file to be saved to
RemarksThe image format is chosen depending on the filename extension, see cvLoadImage. Only 8-bit single-channel or 3-channel (with 'BGR' channel order) images can be saved using this function. If the format, depth or channel order is different, use cvCvtScale and cvCvtColor to convert it before saving, or use universal cvSave to save the image to XML or YAML format.
See Also