mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 23:33:05 +04:00
Merge branch 'core_fix_base64_packed_struct'
This commit is contained in:
@@ -583,11 +583,11 @@ public:
|
||||
|
||||
/** @brief Reads node elements to the buffer with the specified format.
|
||||
|
||||
Usually it is more convenient to use operator `>>` instead of this method.
|
||||
@param fmt Specification of each array element. See @ref format_spec "format specification"
|
||||
@param vec Pointer to the destination array.
|
||||
@param len Number of elements to read. If it is greater than number of remaining elements then all
|
||||
of them will be read.
|
||||
Usually it is more convenient to use operator `>>` instead of this method.
|
||||
@param fmt Specification of each array element. See @ref format_spec "format specification"
|
||||
@param vec Pointer to the destination array.
|
||||
@param len Number of bytes to read (buffer size limit). If it is greater than number of
|
||||
remaining elements then all of them will be read.
|
||||
*/
|
||||
void readRaw( const String& fmt, void* vec, size_t len ) const;
|
||||
|
||||
@@ -652,14 +652,14 @@ public:
|
||||
|
||||
/** @brief Reads node elements to the buffer with the specified format.
|
||||
|
||||
Usually it is more convenient to use operator `>>` instead of this method.
|
||||
@param fmt Specification of each array element. See @ref format_spec "format specification"
|
||||
@param vec Pointer to the destination array.
|
||||
@param maxCount Number of elements to read. If it is greater than number of remaining elements then
|
||||
all of them will be read.
|
||||
Usually it is more convenient to use operator `>>` instead of this method.
|
||||
@param fmt Specification of each array element. See @ref format_spec "format specification"
|
||||
@param vec Pointer to the destination array.
|
||||
@param len Number of bytes to read (buffer size limit). If it is greater than number of
|
||||
remaining elements then all of them will be read.
|
||||
*/
|
||||
FileNodeIterator& readRaw( const String& fmt, void* vec,
|
||||
size_t maxCount=(size_t)INT_MAX );
|
||||
size_t len=(size_t)INT_MAX );
|
||||
|
||||
//! returns the number of remaining (not read yet) elements
|
||||
size_t remaining() const;
|
||||
|
||||
Reference in New Issue
Block a user