Передача значений из 2D-массива в функцию - PullRequest
0 голосов
/ 11 июля 2019

У меня есть массив с 255 четвертями, как показано ниже.

На каждой итерации i я хочу передать (правильную терминологию?) Первые три значения каждого четверки в функцию (три? В getColourDistance ниже), чтобы вернуть результат вычисления.

Как это сделать в варианте C ++ для Arduino?

Спасибо!

const int SAMPLES[][4] ={{2223, 1612,  930,  10}, {1855,  814,  530,  20}, {1225,  463,  438,  30}, {1306,  504,  552,  40}, ...};

byte samplesCount = sizeof(SAMPLES) / sizeof(SAMPLES[0]);

for (byte i = 0; i < samplesCount; i++)
{
  tcs.getRawData(&r, &g, &b, &c);
  colourDistance = getColourDistance(r, g, b, ?, ?, ?);
  // do something based on the value of colourDistance
}

int getColourDistance(int sensorR, int sensorG, int sensorB, int sampleR, int sampleG, int sampleB)
{
  return sqrt(pow(sensorR - sampleR, 2) + pow(sensorG - sampleG, 2) + pow(sensorB - sampleB, 2));
}

1 Ответ

2 голосов
/ 11 июля 2019

В этом случае массив SAMPLES можно рассматривать как 2-мерный массив, поэтому SAMPLES [0] [0] даст 1-й элемент 1-го 1-мерного массива SAMPLES, SAMPLES [0] [1], будет дать 2-й элемент 1-го 1-го массива ОБРАЗЦОВ и т. д., учитывая эту терминологию, которую мы можем сделать,

#include <iostream>

const int SAMPLES[][4] = {{2223, 1612, 930, 10}, {1855, 814, 530, 20}, {1225, 463, 438, 30}, {1306, 504, 552, 40}, ...};

byte samplesCount = sizeof(SAMPLES) / sizeof(SAMPLES[0]);

for (byte i = 0; i < samplesCount; i++)
{
    //taking values of r,g,b as before    
    a=SAMPLES[i][0];//getting values of r,g,b 
    b=SAMPLES[i][1];//using the knowledge that SAMPLES[i][j]
    c=SAMPLES[i][2];//denotes jth element of ith 1-d array of SAMPLES
    colourDistance = getColourDistance(r, g, b, a, b, c);
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...