Visualize a Dataset Using Feature Extraction
Extract features from images of trees.
In[1]:=
Reduce the features to two-dimensional vectors and visualize the dataset in this space.
In[2]:=
xy = DimensionReduce[features, 2];
In[3]:=
ListPlot[List /@ xy,
PlotMarkers -> (Image[#, ImageSize -> 50] & /@ tree),
ImageSize -> 500]
Out[3]=