ThatGuy

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • Author
    Posts
  • in reply to: What exactly is calibration #1022718
    ThatGuy
    Participant

    Does calibration work against a very noisy environment such as being in a cafeteria? Or just minor noise levels such as being in a coffee shop?

    in reply to: Repeats in NSLog #1022174
    ThatGuy
    Participant

    Hey, it was just a problem with ARC I believe, I just put self.openEarsEventsObserver = nil; when exiting the view controller. Thanks for your assistance Halle.

    in reply to: Repeats in NSLog #1022172
    ThatGuy
    Participant

    Ok, so I just put NSLog (@"%@", self.pocketsphinxController); in the viewDidLoad methods and they showed different instances <PocketsphinxController: 0x987f590> and <PocketsphinxController: 0x98a3ab0>. So how does one make them the same instance.

    in reply to: Repeats in NSLog #1022170
    ThatGuy
    Participant

    So are you saying that I should only declare PocketSphinxController *pocketsphinxController in only one header file and reference it from different view controllers? I have [self.openEarsEventsObserver setDelegate:self]; in the viewDidLoad methods of all of the view controllers and this as well

    - (OpenEarsEventsObserver *)openEarsEventsObserver {
        
    	if (openEarsEventsObserver == nil) {
    		openEarsEventsObserver = [[OpenEarsEventsObserver alloc] init];
    	}
    	return openEarsEventsObserver;
    }

    regarding the openEarsEventsObserver.

    in reply to: Responding to Speech Recognition #1021987
    ThatGuy
    Participant

    Also, I’m only a young teen trying to embark on my journey into the computer world. :D

    in reply to: Responding to Speech Recognition #1021986
    ThatGuy
    Participant

    Thanks Halle, yeah I might need to read up on objective c… Anyways, I fixed it. I just added isEqual.

    if ([hypothesis  isEqual: @"WORD"]) {
            
            //Whatever Code I Need
            
        }
Viewing 6 posts - 1 through 6 (of 6 total)