Fixes multiple typos in the tasks internal files.

PiperOrigin-RevId: 568585517
This commit is contained in:
MediaPipe Team 2023-09-26 10:42:41 -07:00 committed by Copybara-Service
parent e5e75eac5e
commit 199b42278b
8 changed files with 13 additions and 13 deletions

View File

@ -59,12 +59,12 @@ using absl::StatusCode;
return NULL; return NULL;
} }
void *allocedMemory = malloc(memSize); void *allocatedMemory = malloc(memSize);
if (!allocedMemory) { if (!allocatedMemory) {
exit(-1); exit(-1);
} }
return allocedMemory; return allocatedMemory;
} }
+ (BOOL)checkCppError:(const absl::Status &)status toError:(NSError *_Nullable *)error { + (BOOL)checkCppError:(const absl::Status &)status toError:(NSError *_Nullable *)error {

View File

@ -82,7 +82,7 @@ static NSString *const kExpectedErrorDomain = @"com.google.mediapipe.tasks";
AssertEqualErrors(error, expectedError); AssertEqualErrors(error, expectedError);
} }
- (void)testInitWithImageSuceeds { - (void)testInitWithImageSucceeds {
MPPImage *mppImage = [[MPPImage alloc] initWithUIImage:self.image error:nil]; MPPImage *mppImage = [[MPPImage alloc] initWithUIImage:self.image error:nil];
[self assertMPPImage:mppImage [self assertMPPImage:mppImage
hasSourceType:MPPImageSourceTypeImage hasSourceType:MPPImageSourceTypeImage

View File

@ -739,7 +739,7 @@ public final class ImageSegmenter extends BaseVisionTaskApi {
@AutoValue @AutoValue
public abstract static class SegmentationOptions { public abstract static class SegmentationOptions {
/** Builder fo {@link SegmentationOptions} */ /** Builder for {@link SegmentationOptions} */
@AutoValue.Builder @AutoValue.Builder
public abstract static class Builder { public abstract static class Builder {

View File

@ -289,7 +289,7 @@ public class GestureRecognizerTest {
} }
@Test @Test
public void recognize_successWithPreferAlowListThanDenyList() throws Exception { public void recognize_successWithPreferAllowListThanDenyList() throws Exception {
GestureRecognizerOptions options = GestureRecognizerOptions options =
GestureRecognizerOptions.builder() GestureRecognizerOptions.builder()
.setBaseOptions( .setBaseOptions(

View File

@ -140,7 +140,7 @@ export class AudioClassifier extends AudioTaskRunner<AudioClassifierResult[]> {
* @param sampleRate The sample rate in Hz of the provided audio data. If not * @param sampleRate The sample rate in Hz of the provided audio data. If not
* set, defaults to the sample rate set via `setDefaultSampleRate()` or * set, defaults to the sample rate set via `setDefaultSampleRate()` or
* `48000` if no custom default was set. * `48000` if no custom default was set.
* @return The classification result of the audio datas * @return The classification result of the audio data
*/ */
classify(audioData: Float32Array, sampleRate?: number): classify(audioData: Float32Array, sampleRate?: number):
AudioClassifierResult[] { AudioClassifierResult[] {

View File

@ -342,7 +342,7 @@ export class GestureRecognizer extends VisionTaskRunner {
* Converts raw data into a landmark, and adds it to our worldLandmarks * Converts raw data into a landmark, and adds it to our worldLandmarks
* list. * list.
*/ */
private adddJsWorldLandmarks(data: Uint8Array[]): void { private addJsWorldLandmarks(data: Uint8Array[]): void {
for (const binaryProto of data) { for (const binaryProto of data) {
const handWorldLandmarksProto = const handWorldLandmarksProto =
LandmarkList.deserializeBinary(binaryProto); LandmarkList.deserializeBinary(binaryProto);
@ -396,7 +396,7 @@ export class GestureRecognizer extends VisionTaskRunner {
this.graphRunner.attachProtoVectorListener( this.graphRunner.attachProtoVectorListener(
WORLD_LANDMARKS_STREAM, (binaryProto, timestamp) => { WORLD_LANDMARKS_STREAM, (binaryProto, timestamp) => {
this.adddJsWorldLandmarks(binaryProto); this.addJsWorldLandmarks(binaryProto);
this.setLatestOutputTimestamp(timestamp); this.setLatestOutputTimestamp(timestamp);
}); });
this.graphRunner.attachEmptyPacketListener( this.graphRunner.attachEmptyPacketListener(

View File

@ -277,7 +277,7 @@ export class HandLandmarker extends VisionTaskRunner {
* Converts raw data into a world landmark, and adds it to our worldLandmarks * Converts raw data into a world landmark, and adds it to our worldLandmarks
* list. * list.
*/ */
private adddJsWorldLandmarks(data: Uint8Array[]): void { private addJsWorldLandmarks(data: Uint8Array[]): void {
for (const binaryProto of data) { for (const binaryProto of data) {
const handWorldLandmarksProto = const handWorldLandmarksProto =
LandmarkList.deserializeBinary(binaryProto); LandmarkList.deserializeBinary(binaryProto);
@ -322,7 +322,7 @@ export class HandLandmarker extends VisionTaskRunner {
this.graphRunner.attachProtoVectorListener( this.graphRunner.attachProtoVectorListener(
WORLD_LANDMARKS_STREAM, (binaryProto, timestamp) => { WORLD_LANDMARKS_STREAM, (binaryProto, timestamp) => {
this.adddJsWorldLandmarks(binaryProto); this.addJsWorldLandmarks(binaryProto);
this.setLatestOutputTimestamp(timestamp); this.setLatestOutputTimestamp(timestamp);
}); });
this.graphRunner.attachEmptyPacketListener( this.graphRunner.attachEmptyPacketListener(

View File

@ -403,7 +403,7 @@ export class PoseLandmarker extends VisionTaskRunner {
* Converts raw data into a world landmark, and adds it to our * Converts raw data into a world landmark, and adds it to our
* worldLandmarks list. * worldLandmarks list.
*/ */
private adddJsWorldLandmarks(data: Uint8Array[]): void { private addJsWorldLandmarks(data: Uint8Array[]): void {
this.worldLandmarks = []; this.worldLandmarks = [];
for (const binaryProto of data) { for (const binaryProto of data) {
const poseWorldLandmarksProto = const poseWorldLandmarksProto =
@ -452,7 +452,7 @@ export class PoseLandmarker extends VisionTaskRunner {
this.graphRunner.attachProtoVectorListener( this.graphRunner.attachProtoVectorListener(
WORLD_LANDMARKS_STREAM, (binaryProto, timestamp) => { WORLD_LANDMARKS_STREAM, (binaryProto, timestamp) => {
this.adddJsWorldLandmarks(binaryProto); this.addJsWorldLandmarks(binaryProto);
this.setLatestOutputTimestamp(timestamp); this.setLatestOutputTimestamp(timestamp);
}); });
this.graphRunner.attachEmptyPacketListener( this.graphRunner.attachEmptyPacketListener(