Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if (!descriptor) {

// Extract face descriptor.
// This is typically the most time-consuming task.
fsdk::ResultValue<FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
fsdk::ResultValue<fsdk::FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
image,
detections[bestDetectionIndex],
landmarks5[bestDetectionIndex],
Expand Down
2 changes: 1 addition & 1 deletion example1/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ fsdk::IDescriptorPtr extractDescriptor(

// Extract face descriptor.
// This is typically the most time-consuming task.
fsdk::ResultValue<FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
fsdk::ResultValue<fsdk::FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
image,
detections[bestDetectionIndex],
landmarks5[bestDetectionIndex],
Expand Down
2 changes: 1 addition & 1 deletion example5/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ fsdk::IDescriptorPtr extractDescriptor(

// Extract face descriptor.
// This is typically the most time-consuming task.
fsdk::ResultValue<FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
fsdk::ResultValue<fsdk::FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
image,
detections[bestDetectionIndex],
landmarks5[bestDetectionIndex],
Expand Down
2 changes: 1 addition & 1 deletion example6/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ int main(int argc, char *argv[])

// Extract face descriptor.
// This is typically the most time-consuming task.
fsdk::ResultValue<FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
fsdk::ResultValue<fsdk::FSDKError, float> descriptorExtractorResult = descriptorExtractor->extract(
image,
detections[detectionIndex],
landmarks5[detectionIndex],
Expand Down