SaashaJoshi / piQture

piQture: A quantum machine learning library for image processing.
https://saashajoshi.github.io/piQture/
Apache License 2.0
15 stars 7 forks source link

Add MCRQI image representation method #44

Closed SaashaJoshi closed 3 months ago

SaashaJoshi commented 7 months ago

Completes a task mentioned in #31

SaashaJoshi commented 4 months ago

Refer to this to construct the MCRQI method

mcrqi-circuit
SaashaJoshi commented 4 months ago

ImageEmbedding ABC currently supports grayscale images only. The pixel_val argument is of the type list but should be changed to list[list] so that RGB channels can be passed through the same argument for colored images. This will also require some changes in test files and error-handling cases.

75 makes the required changes