iOS용 AR 객체 세분화 및 전경 추출 애플리케이션을 구축하는 방법 [튜토리얼]
등록하다
아직 echoAR API 키가 없다면 echoAR에서 무료로 등록하세요.
설치
용법
API요청 생성
사용자 정의 애플리케이션에 이미지 업로드 기능을 추가하려면 프로젝트 폴더에 APIRequest.swift 및 Media.swift를 추가하세요. http-post 요청을 만들려면 APIRequest 객체를 만드세요.
let postRequest = APIRequest()
사후 요청을 보내려면 APIRequest의 send() 인스턴스 메소드를 사용하십시오. 이 메소드는 다음 매개변수를 허용합니다.
let postRequest = APIRequest()
image(유형: UIimage): 콘솔에 업로드해야 하는 UIImage
imageName(유형: 문자열): 이미지의 이름
echoARApiKey(유형: 문자열) : API 키
complete (type: closure): 함수에 인수로 전달되지만 함수가 반환된 후에 호출되는 이스케이핑 클로저. 성공과 실패의 두 가지 사례가 있는 결과 유형을 반환합니다. 여기서 성공 사례는 문자열을 반환하고 실패 사례는 일종의 API 오류입니다.
let postRequest = APIRequest()
postRequest.send(imageToPost: UIimage,fileName: String, APIKey: String, completion: {
result in switch result {
case .success(_):
print("Success Uploading")
case .failure(.incorrectKeyProblem):
self.createErrorAlert("Incorrect Key", "Please Check key and Try again")
print("Incorrect Key")
case .failure(let error):
print("Error Occurred \(error)")
}
})
Post Request는 키-값 쌍이 임의로 생성된 경계 문자열과 구분되는 multipart/form-data httpRequest를 수행합니다.
Post Request는 target_type = 2, hologram_type = 1일 경우에만 작동하며 *이미지는 *file_image_hologram으로 전송됩니다.
API오류:
send(_) 요청으로 전달되는 클로저는 .success* 또는 .failure*를 반환합니다. 여기서 .failure는 APIError 유형입니다.
더 알아보기
Unity, AR Foundation 및 echoAR 사용 방법에 대한 자세한 내용은 당사documentation를 참조하십시오.
지원하다
언제든지 [email protected]으로 연락하거나 support channel on Slack에 가입하세요.
echoAR (http://www.echoAR.xyz; Techstars '19) is a cloud platform for augmented reality (AR) and virtual reality (VR) that provides tools and server-side infrastructure to help developers & companies quickly build and deploy AR/VR apps and experiences
Reference
이 문제에 관하여(iOS용 AR 객체 세분화 및 전경 추출 애플리케이션을 구축하는 방법 [튜토리얼]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/echo3d/how-to-build-an-ar-object-segmentation-and-foreground-extraction-application-for-ios-tutorial-1cgm
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
언제든지 [email protected]으로 연락하거나 support channel on Slack에 가입하세요.
echoAR (http://www.echoAR.xyz; Techstars '19) is a cloud platform for augmented reality (AR) and virtual reality (VR) that provides tools and server-side infrastructure to help developers & companies quickly build and deploy AR/VR apps and experiences
Reference
이 문제에 관하여(iOS용 AR 객체 세분화 및 전경 추출 애플리케이션을 구축하는 방법 [튜토리얼]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/echo3d/how-to-build-an-ar-object-segmentation-and-foreground-extraction-application-for-ios-tutorial-1cgm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)