Platforms to show: All Mac Windows Linux Cross-Platform

Back to CIDetectorMBS class.

CIDetectorMBS.Constructor(Handle as Integer)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method CoreImage MBS MacCI Plugin 12.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Creates a new CIDetectorMBS object for the given handle.

See also:

CIDetectorMBS.Constructor(type as string, context as CIContextMBS = nil, options as dictionary = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method CoreImage MBS MacCI Plugin 12.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns a new detector instance of the given type.

The type is used to specify the usage intent.
The context argument specifies the CIContext to be used to operate on the image. May be nil.

If the input image to featuresInImage is the output of a CoreImage operation, it may improve performance to specify the same context that was used to operate on that image.

The detector may do image processing in this context and if the image is on the GPU and the specified context is a GPU context this may avoid additional upload to / download from the GPU. If the input image is on the CPU (or the output from a CPU based context) specifying a GPU based context (or vice versa) may reduce performance.

The options parameter lets you optinally specify a accuracy / performance tradeoff. Can be nil or an empty dictionary.

See also:

CIDetectorMBS.featuresInImage(image as CIImageMBS) as CIFeatureMBS()

Type Topic Plugin Version macOS Windows Linux iOS Targets
method CoreImage MBS MacCI Plugin 12.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns an array of CIFeature instances in the given image.

The array is sorted by confidence, highest confidence first.

See also:

Some examples using this method:

CIDetectorMBS.featuresInImage(image as CIImageMBS, options as dictionary) as CIFeatureMBS()

Type Topic Plugin Version macOS Windows Linux iOS Targets
method CoreImage MBS MacCI Plugin 12.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns an array of CIFeature instances in the given image.

The array is sorted by confidence, highest confidence first.
The options dictionary can contain a CIDetectorImageOrientation key value.

See also:

The items on this page are in the following plugins: MBS MacCI Plugin.


The biggest plugin in space...