J_B_UK
J_B_UK

Reputation: 407

ARKit – Detect similar objects but with different colours

Im using Apple ARKit Scanner app to scan objects and then detect those objects. I'm wondering is it possible to scan two identical objects but of different colours and be able to detect the difference.

I suspect the scanner generates reference points on the object which are then detected but is there a way to get it to pick up colour difference?

Example would be two trainers of the same style but one black and one white.

I'm thinking maybe an ARReferenceImage may be a better option as I don't really need all round detection from different angles?

Thanks

Upvotes: 1

Views: 241

Answers (1)

Andy Jazz
Andy Jazz

Reputation: 58483

ML-algorithm of ARKit detects a pre-scanned objects (in .arobject container) in black-and-white scheme, not in RGB colour scheme. If you scan two absolutely similar volumetric objects but with a different colour scheme, there's no any guarantee ARKit will recognise each of them successfully.

enter image description here

Upvotes: 1

Related Questions