You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was starting to play around with this crate and others in the "ndarray family" to become more familiar with using Rust for CV and ML applications. In my adventure, I have a need to (de)serialize images to pass between processes. Constantly decoding/encoding into an image format seems excessive, but maybe this is the ultimate solution. So, I saw that the ndarray crate has an optional serde feature, but the core, ImageBase type in this crate does not implement the Serialize or Deserialize traits and there is no similar optional feature.
Is there interest in adding Serde support to this crate as a similar optional feature so ImageBase can be (de)serialized?
The text was updated successfully, but these errors were encountered:
I was starting to play around with this crate and others in the "ndarray family" to become more familiar with using Rust for CV and ML applications. In my adventure, I have a need to (de)serialize images to pass between processes. Constantly decoding/encoding into an image format seems excessive, but maybe this is the ultimate solution. So, I saw that the ndarray crate has an optional
serde
feature, but the core,ImageBase
type in this crate does not implement theSerialize
orDeserialize
traits and there is no similar optional feature.Is there interest in adding Serde support to this crate as a similar optional feature so
ImageBase
can be (de)serialized?The text was updated successfully, but these errors were encountered: