Method: OpenCV::VectorStringStruct.release
- Defined in:
- lib/ruby/ropencv/ropencv_types.rb
.release(pointer) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
auto delete
16149 16150 16151 16152 16153 |
# File 'lib/ruby/ropencv/ropencv_types.rb', line 16149 def self.release(pointer) Rbind::delete_vector_string_struct(pointer) unless pointer.null? rescue Exception => e puts e end |