38 #include <drain/image/ImageFile.h>
49 #include "drain/Variable.h"
50 #include "drain/image/Image.h"
125 const int depth = som.
map[0][0].size();
127 std::vector<int> defaultChannels;
129 const std::vector<int> & applyChannels = channels.empty() ? defaultChannels : channels;
131 if (channels.empty()){
132 defaultChannels.resize(depth);
133 for (
int k = 0; k < depth; ++k) {
134 defaultChannels[k] = k;
138 const int n = applyChannels.size();
140 if ((n != 1) && (n != 3)){
141 std::cerr <<
"Warning: som2PNM: dimension not 1 (gray) or 3 (rgb) " << std::endl;
145 const int w = (width > 0) ? width : som.
getWidth();
146 const int h = (height > 0) ? height : som.
getHeight();
158 for (
int j = 0; j < h; ++j) {
160 for (
int i = 0; i < w; ++i) {
162 for (
int k = 0; k < n; ++k) {
163 image.
put(i,j,k, som.
map[jMap][iMap][applyChannels[k]]);
int getHeight() const
The number of rows in the map.
Definition: Som.h:138
std::vector< std::vector< T > > map
The actual neural network, two-dimensional map of units.
Definition: Som.h:241
int getWidth() const
The number of columns in the map.
Definition: Som.h:144
void put(size_t i, T x)
Sets the intensity in location i to x. See \address.
Definition: ImageFrame.h:192
Class for multi-channel digital images. Supports dynamic typing with base types (char,...
Definition: Image.h:184
virtual void setGeometry(size_t width, size_t height, size_t imageChannels=1, size_t alphaChannels=0)
Resizes the image, keeps the current type.
Definition: Image.h:95
Definition: DataSelector.cpp:1277
void somToImage(const Som< T > &som, drain::image::Image &image, int width=0, int height=0, const std::vector< int > &channels=std::vector< int >())
Squared Euclidean distance for vectors and similar.
Definition: SomUtils.h:123