matplotlib-cpp icon indicating copy to clipboard operation
matplotlib-cpp copied to clipboard

Add `imshow` support for `double` data type

Open subratappt opened this issue 3 years ago • 0 comments

Add imshow support for double data type.

namespace plt = matplotlibcpp;
.
.
std::vector<double> A(264*264);
.
.
plt::imshow(A.data(),264,264,1);

subratappt avatar Jan 28 '22 02:01 subratappt