1k Random Shapes With Random Operations
32x32 1000 images with labels and a tool to customize the dataset
@kaggle.makra2077_1000_random_shapes_with_random_operations
32x32 1000 images with labels and a tool to customize the dataset
@kaggle.makra2077_1000_random_shapes_with_random_operations
About
The dataset contains 1000 images with 2 random shapes (of 17 possible shapes) having random operations (of 3 possible operations). This dataset is generated using the 3D Shapes Dataset Generator I've developed. Feel free to use it from here.
Label
Column Name | Info |
---|---|
filename | Name of the image file |
shape | Shape Index |
operation | Operation Index |
a,b,c,d,e,f,g,h,i,j,k,l | Dimensional parameters |
hue, sat, val | HSV Values of the color |
rot_x, rot_y, rot_z | Euler Angles |
pos_x, pos_y, pos_z | Position Vector |
Each row depicts information about a shape in the image of a dataset.
Seed
The seed value of the dataset is stored in a txt file and can be used to re-generate the dataset using the tool.
CREATE TABLE dataset (
"filename" VARCHAR,
"shape" BIGINT,
"operation" BIGINT,
"a" DOUBLE,
"b" DOUBLE,
"c" DOUBLE,
"d" DOUBLE,
"e" DOUBLE,
"f" BIGINT,
"g" DOUBLE,
"h" BIGINT,
"i" BIGINT,
"j" BIGINT,
"k" BIGINT,
"l" BIGINT,
"hue" DOUBLE,
"sat" BIGINT,
"val" BIGINT,
"rot_x" DOUBLE,
"rot_y" DOUBLE,
"rot_z" DOUBLE,
"pos_x" DOUBLE,
"pos_y" DOUBLE,
"pos_z" DOUBLE
);
Anyone who has the link will be able to view this.