Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.35 KB

texture-removed-binary-image-unit-v3.0.20.md

File metadata and controls

54 lines (44 loc) · 1.35 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
DSTextureRemovedBinaryImageUnit - Dynamsoft Core Module iOS Edition API Reference
The class DSTextureRemovedBinaryImageUnit of Dynamsoft Core Module represents a unit that contains a texture-removed binary image.
texture-removed binary image, objective-c, swift
true
true
true

DSTextureRemovedBinaryImageUnit

The DSTextureRemovedBinaryImageUnit class represents a unit that contains a texture-removed binary image.

Definition

Assembly: DynamsoftCore.framework

>- Objective-C >- Swift > >1. ```objc NS_SWIFT_NAME(TextureRemovedBinaryImageUnit) @interface DSTextureRemovedBinaryImageUnit: DSIntermediateResultUnit ``` 2. ```swift class TextureRemovedBinaryImageUnit : IntermediateResultUnit ```

Attributes

Attributes Type Description
imageData DSImageData * A DSImageData object as the image data of the texture-removed binary image.

imageData

A DSImageData object as the image data of the texture-removed binary image.

>- Objective-C >- Swift > >1. ```objc @property(nonatomic, strong, nullable) DSImageData *imageData; ``` 2. ```swift var imageData: ImageData? { get set } ```