Skip to content

Commit

Permalink
feat: 좌표 기반 이미지 보정 요정 api 연동 배포
Browse files Browse the repository at this point in the history
  • Loading branch information
KiSeungMin committed Nov 15, 2024
1 parent 2607358 commit 6fa0f7a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
public class ImageProcessRegisterDto {
private String fullUrl;
private List<Map<String, Integer>> colorsList;
private List<List<Double>> coordinateList;
private List<List<Double>> points;
private int intensity;
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public String getProcessImage(ImageProcessRegisterDto imageProcessRegisterDto) {
if(imageProcessRegisterDto.getColorsList() != null){
log.info("color list: " + imageProcessRegisterDto.getColorsList());
url += "/process-color";
} else if (imageProcessRegisterDto.getCoordinateList() != null){
log.info("coordinate list: " + imageProcessRegisterDto.getCoordinateList().toString());
url += "/process-coordinates";
} else if (imageProcessRegisterDto.getPoints() != null){
log.info("point list: " + imageProcessRegisterDto.getPoints().toString());
url += "/process-shape";
} else{
url += "/process-color";
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Landing Page</title>
<title>OnO, 나만의 진정한 오답노트</title>
<style>
* {
margin: 0;
Expand Down

0 comments on commit 6fa0f7a

Please sign in to comment.