散点图B,G位置颠倒问题修改
This commit is contained in:
parent
17fa3b5508
commit
8d52f93a8f
|
@ -115,8 +115,8 @@ public class PHDFileUtil extends AbstractLogOrReport {
|
|||
List<Long> hCounts = struct.h_counts;
|
||||
List<HistogramData> histogramDataList = new LinkedList<>();
|
||||
List<HistogramData> histogramDataDList = new LinkedList<>();
|
||||
for (int i=0; i<bChannels; i++){
|
||||
for (int j=0; j< gChannels; j++){
|
||||
for (int i=0; i<gChannels; i++){
|
||||
for (int j=0; j< bChannels; j++){
|
||||
Long index = i * bChannels + j;
|
||||
Long count = hCounts.get(index.intValue());
|
||||
if (count > 0){
|
||||
|
|
Loading…
Reference in New Issue
Block a user