File size: 2,632 Bytes
3341f2f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78

    <!DOCTYPE html>
    <html>
    <head>
        <title>DeepFurniture Dataset Visualizations</title>
        <style>
            body { 
                font-family: Arial; 
                max-width: 1200px; 
                margin: 0 auto; 
                padding: 20px;
            }
            .example-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
                margin: 20px 0;
            }
            .example-card {
                border: 1px solid #ddd;
                border-radius: 8px;
                padding: 15px;
                text-decoration: none;
                color: inherit;
                transition: transform 0.2s;
            }
            .example-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            h1 { text-align: center; }
        </style>
    </head>
    <body>
        <h1>DeepFurniture Dataset Visualizations</h1>
        <p>This page shows example visualizations from the DeepFurniture dataset. Click on any example to view the full visualization.</p>
        
        <div class="example-grid">
    
            <a href="example_0.html" class="example-card">
                <h3>Scene 1</h3>
                <p>Scene ID: DVD3MBOCEJLMIK6A573WKUY8</p>
                <p>Number of instances: 11</p>
                <p>Click to view details →</p>
            </a>
        
            <a href="example_1.html" class="example-card">
                <h3>Scene 2</h3>
                <p>Scene ID: DVD3MHYMEJI4OKYQBT3WKSY8</p>
                <p>Number of instances: 4</p>
                <p>Click to view details →</p>
            </a>
        
            <a href="example_2.html" class="example-card">
                <h3>Scene 3</h3>
                <p>Scene ID: DVD5FHHPEJJ4ESRZRX3WKUQ8</p>
                <p>Number of instances: 8</p>
                <p>Click to view details →</p>
            </a>
        
            <a href="example_3.html" class="example-card">
                <h3>Scene 4</h3>
                <p>Scene ID: DVD7IYG2EJLMOK6VYL3WKVY8</p>
                <p>Number of instances: 15</p>
                <p>Click to view details →</p>
            </a>
        
            <a href="example_4.html" class="example-card">
                <h3>Scene 5</h3>
                <p>Scene ID: DVDZU2DAEJI4OK6KYT3WKRA8</p>
                <p>Number of instances: 6</p>
                <p>Click to view details →</p>
            </a>
        
        </div>
    </body>
    </html>