以下是我的输出。我希望下面的拼写单词与我的随机单词相同。现在它从文本文件中打印两个不同的单词,我希望它是相同的,除了一个加扰而另一个常规。以下是我的代码。
#!/bin/bash
clear
raspivid -n -t 0 -rot 270 -w 960 -h 720 -fps 30 -b 6000000 -o - | gst-launch-1.0 -e -vvvv fdsrc ! h264parse ! rtph264pay pt=96 config-interval=5 ! udpsink host=***YOUR_PC_IP*** port=5000
答案 0 :(得分:2)
你得到两个不同的随机单词实例。将代码修改为如下所示:
openFile();
String word = randomWord();
String scramble = readScramble(word);
System.out.println("Scramble Word is: " + scramble);
String random = word;
System.out.println("Random Word is: " + random);
答案 1 :(得分:1)
更改主要方法:
mPointCount = xyzIj.xyzCount;
//Is this the coordinate points of the point cloud?
FloatBuffer newPointCloudPoints = xyzIj.xyz;
int i = 0;
//Printing out all the points
while(newPointCloudPoints.get(i) != 0) {
Log.i(TAG, "point cloud " + i + " " + newPointCloudPoints.get(i));
i++;
}
顺便说一句,也许您应该在代码审查堆栈交换中发布此代码。
答案 2 :(得分:1)
您正在调用randomWord()
两次,从而生成两个随机字。根据“随机”的定义,你不能指望两次相同的单词。将主要方法改为
String w = randomWord();
然后打印w
及其拼写版本。