Skip to content

Commit 9716f7a

Browse files
committed
25.11.19_2
1 parent 6880068 commit 9716f7a

File tree

2 files changed

+56
-11
lines changed

2 files changed

+56
-11
lines changed

index.html

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h2>About Us | 팀 DevChoco를 소개합니다!</h2>
4848
<!-- about team -->
4949
<section class="content">
5050
<div class="section-text">
51-
<h2> Introduce DevChoco <br> DevChoco 팀원소개</h2>
51+
<h2> Introduce DevChoco</h2>
5252
</div>
5353
<div class="team-container">
5454
<div class="team">
@@ -100,7 +100,7 @@ <h3>Current : KHU</h3>
100100
</section>
101101

102102
<!-- 기술 및 비전 -->
103-
<section class="content">
103+
<!-- <section class="content">
104104
<img src="public/img/fitverse_app_img.png" alt="우리 팀 이미지" class="section-banner-img2" />
105105
<div class="section-text">
106106
<h2>Our Vision & Technology | 비전과 기술</h2>
@@ -110,42 +110,45 @@ <h2>Our Vision & Technology | 비전과 기술</h2>
110110
<p id="ab" class="ani_text"><em>We leverage computer vision and deep learning to analyze and simulate garments on human images with high precision.<br>
111111
Our goal is to build intelligent visual systems applicable to real-world fashion, commerce, and immersive technologies.</em></p>
112112
</div>
113-
</section>
113+
</section> -->
114114

115115
<!-- 기술 및 비전 -->
116116
<section class="content">
117117
<!--<img src="public/img/fitverse_app_img.png" alt="우리 팀 이미지" class="section-banner-img2" />-->
118118
<div class="section-text">
119119
<h1></h1>
120-
<h2>Learning Inpainted Pre-Flows in Attention for Virtual Try-On | LIPFA</h2>
121-
<h3>가상 시착을 위한 Attention 메커니즘 기반 인페인팅 전처리 흐름 학습</h3>
120+
<h2>Clothing agnostic Pre-inpainting Virtual Try-ON | CAP-VTON</h2>
121+
<h3>기존 의류에 독립적인 전처리 인페인팅 기반 가상 시착 기법</h3>
122+
123+
<!-- 참고 논문 추가: arXiv 2509.17654 -->
124+
<p class="paper-ref">Paper: <a href="https://arxiv.org/abs/2509.17654" target="_blank" rel="noopener noreferrer">Clothing agnostic Pre-inpainting Virtual Try-ON</a></p>
122125

123126
<div class="results-container">
124127
<div class="result-item">
125128
<img src="public/img/lipfa/입력이미지1.png" alt="입력 이미지">
126-
<p>Figure 1: Input Image (입력 이미지)</p>
129+
<p>Figure 1 - a: Input Image (입력 이미지)</p>
127130
</div>
128131
<div class="result-item">
129132
<img src="public/img/lipfa/s0303.png" alt="옷 이미지">
130-
<p>Figure 2: Clothing Image (s0303) (옷 이미지)</p>
133+
<p>Figure 1 - b: Clothing Image (s0303) (옷 이미지)</p>
131134
</div>
132135
<div class="result-item">
133136
<img src="public/img/lipfa/sy_입력이미지1.png" alt="합성 결과 이미지">
134-
<p>Figure 3: Synthesized Result (합성 결과) </p>
137+
<p>Figure 1 - c: Synthesized Result (합성 결과) </p>
135138
</div>
136139
</div>
137140
<div class="results-container">
138141
<div class="result-item">
139142
<img src="public/img/lipfa/입력이미지2.png" alt="입력 이미지">
140-
<p>Figure 1: Input Image (입력 이미지)</p>
143+
<p>Figure 2 - a: Input Image (입력 이미지)</p>
141144
</div>
142145
<div class="result-item">
143146
<img src="public/img/lipfa/j0388.png" alt="옷 이미지">
144-
<p>Figure 2: Clothing Image (옷 이미지)</p>
147+
<p>Figure 2 - b: Clothing Image (옷 이미지)</p>
145148
</div>
146149
<div class="result-item">
147150
<img src="public/img/lipfa/sy_입력이미지2.png" alt="합성 결과 이미지">
148-
<p>Figure 3: Synthesized Result (합성 결과)</p>
151+
<p>Figure 2 - c: Synthesized Result (합성 결과)</p>
149152
</div>
150153
</div>
151154
</section>

public/ac_aboutdev_style.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,42 @@ main{
404404
color: #ccc;
405405
}
406406

407+
/* 논문 참고 링크 스타일 */
408+
.paper-ref {
409+
margin: 40px 0 60px 0;
410+
padding: 35px 25px;
411+
background: linear-gradient(135deg, rgba(255, 120, 51, 0.1), rgba(16, 127, 255, 0.1));
412+
border-left: 4px solid #ff7833;
413+
border-radius: 8px;
414+
font-size: 1rem;
415+
color: #ffffff;
416+
text-align: left;
417+
max-width: 600px;
418+
margin-left: auto;
419+
margin-right: auto;
420+
transition: all 0.3s ease;
421+
font-family: "Noto Sans KR", sans-serif;
422+
}
423+
424+
.paper-ref:hover {
425+
background: linear-gradient(135deg, rgba(255, 120, 51, 0.15), rgba(16, 127, 255, 0.15));
426+
transform: translateX(5px);
427+
box-shadow: 0 4px 15px rgba(255, 120, 51, 0.3);
428+
}
429+
430+
.paper-ref a {
431+
color: #ff7833;
432+
text-decoration: none;
433+
font-weight: 700;
434+
transition: color 0.3s ease;
435+
margin-left: 8px;
436+
}
437+
438+
.paper-ref a:hover {
439+
color: #ffffff;
440+
text-decoration: underline;
441+
}
442+
407443
/* 반응형 디자인 추가 */
408444
@media (max-width: 768px) {
409445
.section-text {
@@ -477,6 +513,12 @@ main{
477513
opacity: 1;
478514
}
479515

516+
.paper-ref {
517+
font-size: 0.9rem;
518+
padding: 12px 18px;
519+
margin: 15px 10px 25px 10px;
520+
}
521+
480522
.member {
481523
background-color: #ffffff;
482524
border-radius: 55px;

0 commit comments

Comments
 (0)