MIL_TEXT_PTR MemPtrOrFileName, | //in-out |
MIL_ID SysId, | //in |
MIL_INT64 Operation, | //in |
MIL_INT64 StreamType, | //in |
MIL_DOUBLE Version, | //in |
MIL_INT64 ControlFlag, | //in |
MIL_ID *ContextClassIdPtr, | //in-out |
MIL_INT *SizeByteVarPtr | //out |
This function can load or restore a MIL Classification context (classifier, training, or dataset) from a file or memory stream. All of the context settings that were in effect when the context was saved will be restored. A loaded or restored context is not preprocessed. You must call MclassPreprocess() before calling MclassPredict().
This function can also save the context to a file or memory stream. All information about the previously allocated context is saved. Preprocessing changes are not saved.
To inquire the number of bytes necessary to save the context to memory stream, first call MclassStream() with M_INQUIRE_SIZE_BYTE.
The content saved to memory stream is equivalent to the content saved to file. In addition, any file saved using this function is equivalent to a file saved with MclassSave().
You can use this and other MIL stream functions, for example, to save all required MIL objects, as well as any other custom data, for your application to a memory stream. Once in a memory stream, you can write the stream to a single file or transfer it over a network. You are responsible for concatenating the streams and for saving the stream to file.
Specifies the file or memory stream.
See the Parameter associations section for possible values that can be returned/specified.
Specifies the identifier of the system on which to restore the classification context.
See the Parameter associations section for possible values that can be specified.
Specifies the operation to perform on the classification context.
See the Parameter associations section for possible values that can be specified.
Specifies the type of stream in which to store/from which to restore the classification context. Set this parameter to one of the values below:
Specifies the MIL version of the classification context.
See the Parameter associations section for possible values that can be specified.
Specifies the address of the variable in which to write or from which to read the identifier of the classification context (that is, a classifier context, a training context, or a dataset context).
See the Parameter associations section for possible values that can be returned/specified.
The table below lists possible values for the MemPtrOrFileName, SysId, Operation, Version, and ContextClassIdPtr parameters.
For performing the stream operation
|
|||||||||||||||||||||||||||||||||||||||
|
Description | ||||||||||||||||||||||||||||||||||||||
MemPtrOrFileName - Possible values passed or returned |
|||||||||||||||||||||||||||||||||||||||
SysId | |||||||||||||||||||||||||||||||||||||||
Version | |||||||||||||||||||||||||||||||||||||||
ContextClassIdPtr - Possible values passed or returned |
|||||||||||||||||||||||||||||||||||||||
M_INQUIRE_SIZE_BYTE |
Inquires the number of bytes required to save the context to memory stream. This operation is not supported when the StreamType parameter is set to M_FILE. (summarize)Inquires the number of bytes required to save the context to memory stream. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtrOrFileName |
This parameter must be set to M_NULL. (summarize)This parameter must be set to M_NULL. (more details...) |
||||||||||||||||||||||||||||||||||||||
SysId |
This parameter must be set to M_NULL. (summarize)This parameter must be set to M_NULL. (more details...) |
||||||||||||||||||||||||||||||||||||||
Version |
Specifies the MIL version with which the classification context must be compatible when saved. The size of a context might differ from one MIL version to another. (summarize)Specifies the MIL version with which the classification context must be compatible when saved. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_DEFAULT |
Specifies the current version of MIL. |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_100_PP3 |
Specifies MIL 10.0 Processing Pack 3. |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_100_SP4 |
Specifies the version as being MIL 10.0 Service Pack 4. |
||||||||||||||||||||||||||||||||||||||
ContextClassIdPtr |
Specifies the address of the variable containing the identifier of the classification context. (summarize)Specifies the address of the variable containing the identifier of the classification context. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_LOAD |
Loads the content of a specified file or memory stream into a previously allocated classification context. (summarize)Loads the content of a specified file or memory stream into a previously allocated classification context. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtrOrFileName |
Specifies the file or memory stream from which to load the context. (summarize)Specifies the file or memory stream from which to load the context. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_INTERACTIVE |
[This is
only applicable to Windows]
Opens a dialog box from which you can interactively specify the drive, directory, and name of the context file, when the StreamType parameter is set to M_FILE. |
||||||||||||||||||||||||||||||||||||||
MIL_TEXT("FileName") 1 |
Specifies the drive, directory, and name of the context file (for example, "C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"), when the StreamType parameter is set to M_FILE. The function handles (internally) the opening and closing of the file. Classifier context and training context files should have an MCLASS extension. Dataset context files should have an MCLASSD extension. To specify a context file on a remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"). (summarize)Specifies the drive, directory, and name of the context file (for example, "C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"), when the StreamType parameter is set to M_FILE. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtr |
Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The block of memory should be of type MIL_UINT8. The specified address must correspond to the first memory address in which the object is located, and the block of memory must contain the entire object. Note that when using a C compiler (not a C++ or other compiler), you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR. (summarize)Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. (more details...) |
||||||||||||||||||||||||||||||||||||||
SysId |
This parameter must be set to M_NULL. (summarize)This parameter must be set to M_NULL. (more details...) |
||||||||||||||||||||||||||||||||||||||
Version |
This parameter must be set to M_DEFAULT. (summarize)This parameter must be set to M_DEFAULT. (more details...) |
||||||||||||||||||||||||||||||||||||||
ContextClassIdPtr |
Specifies the address of the variable containing the identifier of the classification context. All previous settings are overwritten with those of the loaded context, or are set to the default value if the settings didn't exist in the version of MIL from which the context is being loaded. (summarize)Specifies the address of the variable containing the identifier of the classification context. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_RESTORE |
Restores the context from a file or memory stream and assigns it a MIL identifier. (summarize)Restores the context from a file or memory stream and assigns it a MIL identifier. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtrOrFileName |
Specifies the file or memory stream from which to restore the context. (summarize)Specifies the file or memory stream from which to restore the context. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_INTERACTIVE |
[This is
only applicable to Windows]
Opens a dialog box from which you can interactively specify the drive, directory, and name of the context file, when the StreamType parameter is set to M_FILE. |
||||||||||||||||||||||||||||||||||||||
MIL_TEXT("FileName") 1 |
Specifies the drive, directory, and name of the context file (for example, "C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"), when the StreamType parameter is set to M_FILE. The function handles (internally) the opening and closing of the file. Classifier context and training context files should have an MCLASS extension. Dataset context files should have an MCLASSD extension. To specify a context file on a remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"). (summarize)Specifies the drive, directory, and name of the context file (for example, "C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"), when the StreamType parameter is set to M_FILE. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtr |
Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The block of memory should be of type MIL_UINT8. The specified address must correspond to the first memory address in which the object is located, and the block of memory must contain the entire object. Note that when using a C compiler (not a C++ or other compiler), you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR. (summarize)Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. (more details...) |
||||||||||||||||||||||||||||||||||||||
SysId |
Specifies the system on which to allocate the classification context. (summarize)Specifies the system on which to allocate the classification context. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_DEFAULT_HOST |
Specifies the default Host system of the current MIL application. |
||||||||||||||||||||||||||||||||||||||
MIL system identifier |
Specifies a valid system identifier, previously allocated using MsysAlloc(). |
||||||||||||||||||||||||||||||||||||||
Version |
This parameter must be set to M_DEFAULT. (summarize)This parameter must be set to M_DEFAULT. (more details...) |
||||||||||||||||||||||||||||||||||||||
ContextClassIdPtr |
Specifies the address of the variable in which to write the identifier of the classification context. If the operation is not successful, M_NULL is returned. (summarize)Specifies the address of the variable in which to write the identifier of the classification context. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_SAVE |
Saves the context to a specified file or memory stream. (summarize)Saves the context to a specified file or memory stream. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtrOrFileName |
Specifies the file or memory stream. (summarize)Specifies the file or memory stream. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_INTERACTIVE |
[This is
only applicable to Windows]
Opens a dialog box from which you can interactively specify the drive, directory, and name of the context file, when the StreamType parameter is set to M_FILE. |
||||||||||||||||||||||||||||||||||||||
MIL_TEXT("FileName") 1 |
Specifies the drive, directory, and name of the context file (for example, "C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"), when the StreamType parameter is set to M_FILE. The function handles (internally) the opening and closing of the file. If the file already exists, it will be overwritten. Classifier context and training context files should have an MCLASS extension. Dataset context files should have an MCLASSD extension. To specify a context file on a remote computer (under Distributed MIL), prefix the specified file name string with "remote:///" (for example, "remote:///C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"). (summarize)Specifies the drive, directory, and name of the context file (for example, "C:\mydirectory\WePutTheArtInArtificialIntelligence.mclass"), when the StreamType parameter is set to M_FILE. (more details...) |
||||||||||||||||||||||||||||||||||||||
MemPtr |
Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. The block of memory should be of type MIL_UINT8. The specified address must correspond to the first memory address in which to write, and the block of memory must be large enough to stream the entire object. To determine the required size, call this function with M_INQUIRE_SIZE_BYTE. Note that when using a C compiler (not a C++ or other compiler), you must cast the MIL_UINT8 pointer to a MIL_TEXT_PTR. (summarize)Specifies the address of the block of memory, when the StreamType parameter is set to M_MEMORY. (more details...) |
||||||||||||||||||||||||||||||||||||||
SysId |
This parameter must be set to M_NULL. (summarize)This parameter must be set to M_NULL. (more details...) |
||||||||||||||||||||||||||||||||||||||
Version |
Specifies the MIL version with which the classification context must be compatible when saved. (summarize)Specifies the MIL version with which the classification context must be compatible when saved. (more details...) |
||||||||||||||||||||||||||||||||||||||
M_DEFAULT |
Specifies the current version of MIL. |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_100_PP3 |
Specifies MIL 10.0 Processing Pack 3. |
||||||||||||||||||||||||||||||||||||||
M_PROC_VERSION_100_SP4 |
Specifies the version as being MIL 10.0 Service Pack 4. |
||||||||||||||||||||||||||||||||||||||
ContextClassIdPtr |
Specifies the address of the variable containing the identifier of the classification context to save. (summarize)Specifies the address of the variable containing the identifier of the classification context to save. (more details...) |
1 If you are passing the value in a variable, don't enclose it in MIL_TEXT().
Header | Include mil.h. |
Library | Use mil.lib; milclass.lib. |
DLL | Requires mil.dll; milclass.dll. |