TermCriteria
Objective-C
@interface TermCriteria : NSObjectSwift
class TermCriteria : NSObjectClass representing termination criteria for iterative algorithms.
- 
                  
                  DeclarationObjective-C @property(class, readonly) int COUNTSwift class var count: Int32 { get }
- 
                  
                  DeclarationObjective-C @property(class, readonly) int EPSSwift class var eps: Int32 { get }
- 
                  
                  DeclarationObjective-C @property(class, readonly) int MAX_ITERSwift class var max_ITER: Int32 { get }
- 
                  
                  DeclarationObjective-C @property int typeSwift var type: Int32 { get set }
- 
                  
                  DeclarationObjective-C @property int maxCountSwift var maxCount: Int32 { get set }
- 
                  
                  DeclarationObjective-C @property double epsilonSwift var epsilon: Double { get set }
- 
                  
                  DeclarationObjective-C - (instancetype)init;Swift init()
- 
                  
                  DeclarationObjective-C - (instancetype)initWithType:(int)type maxCount:(int)maxCount epsilon:(double)epsilon;Swift init(type: Int32, maxCount: Int32, epsilon: Double)
- 
                  
                  DeclarationObjective-C - (instancetype)initWithVals:(NSArray<NSNumber*>*)vals;Swift init(vals: [NSNumber])
- 
                  
                  Set the termination criteria values from the values of an array DeclarationObjective-C - (void)set:(nonnull NSArray<NSNumber *> *)vals;Swift func set(vals: [NSNumber])ParametersvalsThe array of values from which to set the termination criteria values 
- 
                  
                  Clone object DeclarationObjective-C - (nonnull TermCriteria *)clone;Swift func clone() -> TermCriteria
- 
                  
                  Compare for equality DeclarationObjective-C - (BOOL)isEqual:(nullable id)object;Swift func isEqual(_ object: Any?) -> BoolParametersotherObject to compare 
- 
                  
                  Calculate hash value for this object DeclarationObjective-C - (NSUInteger)hash;Swift func hash() -> UInt
- 
                  
                  Returns a string that describes the contents of the object DeclarationObjective-C - (nonnull NSString *)description;Swift func description() -> String
 View on GitHub
View on GitHub TermCriteria Class Reference
        TermCriteria Class Reference