1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
|
/*LICENSE_START*/
/*
* Copyright (C) 2014 Washington University School of Medicine
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/*LICENSE_END*/
#define __CIFTI_MAPPABLE_CONNECTIVITY_MATRIX_DATA_FILE_DECLARE__
#include "CiftiMappableConnectivityMatrixDataFile.h"
#undef __CIFTI_MAPPABLE_CONNECTIVITY_MATRIX_DATA_FILE_DECLARE__
#include "CaretAssert.h"
#include "CiftiFile.h"
#include "CaretLogger.h"
#include "ConnectivityDataLoaded.h"
#include "EventManager.h"
#include "EventProgressUpdate.h"
#include "SceneClass.h"
#include "SceneClassAssistant.h"
using namespace caret;
/**
* \class caret::CiftiMappableConnectivityMatrixDataFile
* \brief Data file for Cifti Connectivity Matrix Files.
* \ingroup Files
*/
/**
* Constructor.
*/
CiftiMappableConnectivityMatrixDataFile::CiftiMappableConnectivityMatrixDataFile(const DataFileTypeEnum::Enum dataFileType)
: CiftiMappableDataFile(dataFileType)
{
m_connectivityDataLoaded = new ConnectivityDataLoaded();
clearPrivate();
m_sceneAssistant = new SceneClassAssistant();
m_sceneAssistant->add("m_connectivityDataLoaded",
"ConnectivityDataLoaded",
m_connectivityDataLoaded);
m_sceneAssistant->add("m_dataLoadingEnabled",
&m_dataLoadingEnabled);
}
/**
* Destructor.
*/
CiftiMappableConnectivityMatrixDataFile::~CiftiMappableConnectivityMatrixDataFile()
{
clearPrivate();
delete m_connectivityDataLoaded;
delete m_sceneAssistant;
}
/**
* Clear the contents of the file.
*/
void
CiftiMappableConnectivityMatrixDataFile::clear()
{
CiftiMappableDataFile::clear();
clearPrivate();
}
/**
* Clear the contents of the file.
* Note that "clear()" is virtual and cannot be called from destructor.
*/
void
CiftiMappableConnectivityMatrixDataFile::clearPrivate()
{
m_loadedRowData.clear();
m_rowLoadedTextForMapName = "";
m_rowLoadedText = "";
m_dataLoadingEnabled = true;
m_connectivityDataLoaded->reset();
}
/**
* @return Pointer to the information about last loaded connectivity data.
*/
const ConnectivityDataLoaded*
CiftiMappableConnectivityMatrixDataFile::getConnectivityDataLoaded() const
{
return m_connectivityDataLoaded;
}
/**
* Get the nodes for the parcel for the given structure that corresponds
* to the last selected row.
*
* @param parcelNodesOut
* Ouput containing the node indices.
* @param structure
* The surface structure.
*/
bool
CiftiMappableConnectivityMatrixDataFile::getParcelNodesElementForSelectedParcel(std::set<int64_t> &parcelNodesOut,
const StructureEnum::Enum &structure) const
{
bool validFlag = false;
int64_t rowIndex = -1;
m_connectivityDataLoaded->getRowLoading(rowIndex);
if (rowIndex >= 0) {
validFlag = CiftiMappableDataFile::getParcelNodesElementForSelectedParcel(parcelNodesOut,
structure,
rowIndex);
}
return validFlag;
}
/**
* @return Is this file empty?
*/
bool
CiftiMappableConnectivityMatrixDataFile::isEmpty() const
{
if (CiftiMappableDataFile::isEmpty()) {
return true;
}
return false;
}
/**
* @return Is loading of data enabled. Note that if
* disabled, any previously loaded data is NOT removed
* so that it can still be displayed but not updated.
*/
bool
CiftiMappableConnectivityMatrixDataFile::isMapDataLoadingEnabled(const int32_t /*mapIndex*/) const
{
return m_dataLoadingEnabled;
}
/**
* Set loading of data enabled. Note that if
* disabled, any previously loaded data is NOT removed
* so that it can still be displayed but not updated.
*
* @param dataLoadingEnabled
* New data loading enabled status.
*/
void
CiftiMappableConnectivityMatrixDataFile::setMapDataLoadingEnabled(const int32_t /*mapIndex*/,
const bool dataLoadingEnabled)
{
m_dataLoadingEnabled = dataLoadingEnabled;
}
/**
* Get the data for the given map index.
*
* @param mapIndex
* Index of the map.
* @param dataOut
* A vector that will contain the data for the map upon exit.
*/
void
CiftiMappableConnectivityMatrixDataFile::getMapData(const int32_t /*mapIndex*/,
std::vector<float>& dataOut) const
{
//int nCols = m_ciftiInterface->getNumberOfColumns();
//dataOut.resize(nCols);
//m_ciftiInterface->getColumn(&dataOut[0],mapIndex);
dataOut = m_loadedRowData;
}
/**
* Get the index of a row when loading data for a surface node.
* @param structure
* Structure of the surface.
* @param surfaceNumberOfNodes
* Number of nodes in the surface.
* @param nodeIndex
* Index of the node.
* @return
* Index of row corresponding to node or -1 if no row in the
* matrix corresponds to the node.
*/
int64_t
CiftiMappableConnectivityMatrixDataFile::getRowIndexForNodeWhenLoading(const StructureEnum::Enum structure,
const int64_t surfaceNumberOfNodes,
const int64_t nodeIndex)
{
if (m_ciftiFile == NULL) {
return -1;
}
int64_t rowIndex = -1;
const CiftiXML& ciftiXML = m_ciftiFile->getCiftiXML();
switch (ciftiXML.getMappingType(CiftiXML::ALONG_COLUMN))
{
case CiftiMappingType::BRAIN_MODELS:
if (ciftiXML.getBrainModelsMap(CiftiXML::ALONG_COLUMN).getSurfaceNumberOfNodes(structure) != surfaceNumberOfNodes) return -1;
break;
case CiftiMappingType::PARCELS:
if (ciftiXML.getParcelsMap(CiftiXML::ALONG_COLUMN).getSurfaceNumberOfNodes(structure) != surfaceNumberOfNodes) return -1;
break;
default:
return -1;
}
/*
* Get the mapping type
*/
const CiftiMappingType::MappingType rowMappingType = ciftiXML.getMappingType(CiftiXML::ALONG_COLUMN);
switch (rowMappingType) {
case CiftiMappingType::BRAIN_MODELS:
rowIndex = ciftiXML.getBrainModelsMap(CiftiXML::ALONG_COLUMN).getIndexForNode(nodeIndex, structure);
break;
case CiftiMappingType::PARCELS:
rowIndex = ciftiXML.getParcelsMap(CiftiXML::ALONG_COLUMN).getIndexForNode(nodeIndex, structure);
break;
case CIFTI_INDEX_TYPE_SCALARS:
break;
case CIFTI_INDEX_TYPE_TIME_POINTS:
break;
default:
CaretAssert(0);
CaretLogSevere("Invalid row mapping type for connectivity file "
+ DataFileTypeEnum::toName(getDataFileType()));
break;
}
return rowIndex;
}
/**
* Get the index of a row when loading data for a voxel at a coordinate.
* @param xyz
* Coordinate of the voxel.
* @return
* Index of row corresponding to voxel or negative if no row in the
* matrix corresponds to the voxel.
*/
int64_t
CiftiMappableConnectivityMatrixDataFile::getRowIndexForVoxelAtCoordinateWhenLoading(const float xyz[3])
{
if (m_ciftiFile == NULL) {
return -1;
}
int64_t ijk[3];
enclosingVoxel(xyz[0], xyz[1], xyz[2], ijk[0], ijk[1], ijk[2]);
return getRowIndexForVoxelIndexWhenLoading(ijk);
}
/**
* Get the index of a row when loading data for a voxel index.
*
* @param ijk
* Indices of the voxel.
* @return
* Index of row corresponding to voxel or negative if no row in the
* matrix corresponds to the voxel.
*/
int64_t
CiftiMappableConnectivityMatrixDataFile::getRowIndexForVoxelIndexWhenLoading(const int64_t ijk[3])
{
if (m_ciftiFile == NULL) {
return -1;
}
int64_t rowIndex = -1;
const CiftiXML& ciftiXML = m_ciftiFile->getCiftiXML();
const CiftiMappingType::MappingType rowMappingType = ciftiXML.getMappingType(CiftiXML::ALONG_COLUMN);
/*
* Get the mapping type
*/
if (indexValid(ijk[0], ijk[1], ijk[2])) {
switch (rowMappingType) {
case CIFTI_INDEX_TYPE_BRAIN_MODELS:
rowIndex = ciftiXML.getBrainModelsMap(CiftiXML::ALONG_COLUMN).getIndexForVoxel(ijk);
break;
case CIFTI_INDEX_TYPE_PARCELS:
rowIndex = ciftiXML.getParcelsMap(CiftiXML::ALONG_COLUMN).getIndexForVoxel(ijk);
break;
default:
CaretAssert(0);
CaretLogSevere("Invalid row mapping type for connectivity file "
+ DataFileTypeEnum::toName(getDataFileType()));
break;
}
}
return rowIndex;
}
/**
* Set the loaded row data to zeros.
*/
void
CiftiMappableConnectivityMatrixDataFile::setLoadedRowDataToAllZeros()
{
if ( ! m_loadedRowData.empty()){
std::fill(m_loadedRowData.begin(),
m_loadedRowData.end(),
0.0);
}
updateForChangeInMapDataWithMapIndex(0);
// if (m_mapContent.empty() == false) {
// m_mapContent[0]->updateForChangeInMapData();
// }
m_connectivityDataLoaded->reset();
m_rowLoadedText.clear();
m_rowLoadedTextForMapName.clear();
}
/**
* Load the given row from the file even if the file is disabled.
*
* NOTE: Afterwards, it will be necessary to update this file's color mapping
* with updateScalarColoringForMap().
*
*
* @param rowIndex
* Index of row that is loaded.
* @throw DataFileException
* If an error occurs.
*/
void
CiftiMappableConnectivityMatrixDataFile::loadDataForRowIndex(const int64_t rowIndex) throw (DataFileException)
{
setLoadedRowDataToAllZeros();
const int64_t dataCount = m_ciftiFile->getNumberOfColumns();
if (dataCount > 0) {
m_rowLoadedTextForMapName = ("Row: "
+ AString::number(rowIndex));
m_rowLoadedText = ("Row_"
+ AString::number(rowIndex));
CaretAssert((rowIndex >= 0) && (rowIndex < m_ciftiFile->getNumberOfRows()));
m_loadedRowData.resize(dataCount);
m_ciftiFile->getRow(&m_loadedRowData[0],
rowIndex);
CaretLogFine("Read row " + AString::number(rowIndex));
m_connectivityDataLoaded->setRowLoading(rowIndex);
}
else {
throw DataFileException("Row "
+ AString::number(rowIndex)
+ " is invalid or contains no data.");
}
updateForChangeInMapDataWithMapIndex(0);
}
/**
* Load connectivity data for the surface's node.
*
* @param mapIndex
* Index of map.
* @param surfaceNumberOfNodes
* Number of nodes in surface.
* @param structure
* Surface's structure.
* @param nodeIndex
* Index of node number.
* @return
* Index of row that was loaded or -1 if no data was loaded.
* @throw
* DataFileException if there is an error.
*/
int64_t
CiftiMappableConnectivityMatrixDataFile::loadMapDataForSurfaceNode(const int32_t /*mapIndex*/,
const int32_t surfaceNumberOfNodes,
const StructureEnum::Enum structure,
const int32_t nodeIndex) throw (DataFileException)
{
if (m_ciftiFile == NULL) {
setLoadedRowDataToAllZeros();
return -1;
}
/*
* Loading of data disabled?
*/
if (m_dataLoadingEnabled == false) {
return -1;
}
setLoadedRowDataToAllZeros();
int64_t rowIndex = -1;
try {
bool dataWasLoaded = false;
rowIndex = getRowIndexForNodeWhenLoading(structure,
surfaceNumberOfNodes,
nodeIndex);
if (rowIndex >= 0) {
const int64_t dataCount = m_ciftiFile->getNumberOfColumns();
if (dataCount > 0) {
m_rowLoadedTextForMapName = ("Row: "
+ AString::number(rowIndex)
+ ", Node Index: "
+ AString::number(nodeIndex)
+ ", Structure: "
+ StructureEnum::toName(structure));
m_rowLoadedText = ("Row_"
+ AString::number(rowIndex)
+ "_Node_Index_"
+ AString::number(nodeIndex)
+ "_Structure_"
+ StructureEnum::toGuiName(structure));
CaretAssert((rowIndex >= 0) && (rowIndex < m_ciftiFile->getNumberOfRows()));
m_loadedRowData.resize(dataCount);
m_ciftiFile->getRow(&m_loadedRowData[0],
rowIndex);
CaretLogFine("Read row for node " + AString::number(nodeIndex));
m_connectivityDataLoaded->setSurfaceNodeLoading(structure,
surfaceNumberOfNodes,
nodeIndex,
rowIndex);
dataWasLoaded = true;
}
}
if (dataWasLoaded == false) {
CaretLogFine("FAILED to read row for node " + AString::number(nodeIndex));
m_connectivityDataLoaded->reset();
}
}
catch (DataFileException& e) {
m_connectivityDataLoaded->reset();
throw e;
}
updateForChangeInMapDataWithMapIndex(0);
return rowIndex;
}
/**
* Load connectivity data for the given map index.
*
* @param mapIndex
* Index of map.
* @param surfaceNumberOfNodes
* Number of nodes in surface.
* @param structure
* Surface's structure.
* @param nodeIndex
* Index of node number.
* @return
* Index of row that was loaded or -1 if no data was loaded.
* @throw
* DataFileException if there is an error.
*/
bool
CiftiMappableConnectivityMatrixDataFile::loadMapData(const int32_t selectionIndex) throw (DataFileException)
{
if (m_ciftiFile == NULL) {
return false;
}
/*
* Loading of data disabled?
*/
if (m_dataLoadingEnabled == false) {
return false;
}
bool dataWasLoaded = false;
if (selectionIndex >= 0) {
const int64_t dataCount = m_ciftiFile->getNumberOfColumns();
if (dataCount > 0) {
m_rowLoadedTextForMapName = ("Row: "
+ AString::number(selectionIndex+1)
);
m_rowLoadedText = ("Row_"
+ AString::number(selectionIndex+1)
);
CaretAssert((selectionIndex >= 0) && (selectionIndex < m_ciftiFile->getNumberOfRows()));
m_loadedRowData.resize(dataCount);
m_ciftiFile->getRow(&m_loadedRowData[0],
selectionIndex);
CaretLogFine("Read row " + AString::number(selectionIndex+1));
dataWasLoaded = true;
}
}
if (dataWasLoaded == false) {
CaretLogFine("FAILED to read row " + AString::number(selectionIndex+1));
}
updateForChangeInMapDataWithMapIndex(0);
return true;
}
/**
* Load connectivity data for the surface's nodes and then average the data.
*
* @param mapIndex
* Index of map.
* @param surfaceFile
* Surface file used for structure.
* @param surfaceNumberOfNodes
* Number of nodes in surface.
* @param structure
* Surface's structure.
* @param nodeIndices
* Indices of nodes.
* @throw
* DataFileException if there is an error.
*/
void
CiftiMappableConnectivityMatrixDataFile::loadMapAverageDataForSurfaceNodes(const int32_t /*mapIndex*/,
const int32_t surfaceNumberOfNodes,
const StructureEnum::Enum structure,
const std::vector<int32_t>& nodeIndices) throw (DataFileException)
{
if (m_ciftiFile == NULL) {
setLoadedRowDataToAllZeros();
return;
}
/*
* Loading of data disabled?
*/
if (m_dataLoadingEnabled == false) {
return;
}
setLoadedRowDataToAllZeros();
const int32_t numberOfNodeIndices = static_cast<int32_t>(nodeIndices.size());
if (numberOfNodeIndices <= 0) {
return;
}
const bool isDenseMatrix = (getDataFileType() == DataFileTypeEnum::CONNECTIVITY_DENSE);
const int32_t progressUpdateInterval = 1;
bool dataWasLoaded = false;
const int64_t dataCount = m_ciftiFile->getNumberOfColumns();
if (dataCount > 0) {
/*
* Contains the average row
*/
std::vector<float> dataAverageVector(dataCount, 0.0);
float* dataAverage = &dataAverageVector[0];
/*
* Contains row for a node
*/
std::vector<float> dataRowVector(dataCount, 0.0);
float* dataRow = &dataRowVector[0];
int64_t rowSuccessCount = 0;
bool userCancelled = false;
EventProgressUpdate progressEvent(0,
numberOfNodeIndices,
0,
("Loading data for "
+ QString::number(numberOfNodeIndices)
+ " vertices in file ")
+ getFileNameNoPath());
EventManager::get()->sendEvent(progressEvent.getPointer());
/*
* Read rows for each node
*/
for (int32_t i = 0; i < numberOfNodeIndices; i++) {
const int32_t nodeIndex = nodeIndices[i];
if (isDenseMatrix) {
if ((i % progressUpdateInterval) == 0) {
progressEvent.setProgress(i,
"");
EventManager::get()->sendEvent(progressEvent.getPointer());
if (progressEvent.isCancelled()) {
userCancelled = true;
break;
}
}
}
const int64_t rowIndex = getRowIndexForNodeWhenLoading(structure,
surfaceNumberOfNodes,
nodeIndex);
if (rowIndex >= 0) {
CaretAssert((rowIndex >= 0) && (rowIndex < m_ciftiFile->getNumberOfRows()));
m_ciftiFile->getRow(dataRow, rowIndex);
for (int64_t j = 0; j < dataCount; j++) {
dataAverage[j] += dataRow[j];
}
rowSuccessCount++;
CaretLogFine("Read row for node " + AString::fromNumbers(nodeIndices, ","));
}
else {
CaretLogFine("Failed reading row for node " + AString::number(nodeIndex));
}
}
if (userCancelled) {
m_loadedRowData.clear();
m_loadedRowData.resize(dataCount, 0.0);
}
else if (rowSuccessCount > 0) {
/*
* Average the data
*/
for (int64_t i = 0; i < dataCount; i++) {
dataAverage[i] /= rowSuccessCount;
}
m_rowLoadedTextForMapName = ("Structure: "
+ StructureEnum::toName(structure)
+ ", Averaged Node Count: "
+ AString::number(numberOfNodeIndices));
m_rowLoadedText = ("Structure_"
+ StructureEnum::toGuiName(structure)
+ "_Averaged_Node_Count_"
+ AString::number(numberOfNodeIndices));
/*
* Update the viewed data
*/
m_loadedRowData = dataAverageVector;
dataWasLoaded = true;
}
}
if (dataWasLoaded == false) {
CaretLogFine("FAILED to read rows for node average" + AString::fromNumbers(nodeIndices, ","));
}
updateForChangeInMapDataWithMapIndex(0);
if (dataWasLoaded) {
m_connectivityDataLoaded->setSurfaceAverageNodeLoading(structure,
surfaceNumberOfNodes,
nodeIndices);
}
}
/**
* Load data for a voxel at the given coordinate.
*
* @param mapIndex
* Index of map.
* @param xyz
* Coordinate of voxel.
* @return
* Index of row that was loaded or -1 if no data was loaded.
* @throw
* DataFileException if there is an error.
*/
int64_t
CiftiMappableConnectivityMatrixDataFile::loadMapDataForVoxelAtCoordinate(const int32_t mapIndex,
const float xyz[3]) throw (DataFileException)
{
if (mapIndex != 0) {
CaretAssertMessage(0, "Map index must be zero.");
return -1;
}
if (m_ciftiFile == NULL) {
setLoadedRowDataToAllZeros();
return -1;
}
/*
* Loading of data disabled?
*/
if (m_dataLoadingEnabled == false) {
return -1;
}
setLoadedRowDataToAllZeros();
// /*
// * Get content for map.
// */
// CaretAssertVectorIndex(m_mapContent,
// mapIndex);
/*
* Loading of data disabled?
*/
if (m_dataLoadingEnabled == false) {
return -1;
}
int64_t rowIndex = -1;
bool dataWasLoaded = false;
rowIndex = getRowIndexForVoxelAtCoordinateWhenLoading(xyz);
if (rowIndex >= 0) {
const int64_t dataCount = m_ciftiFile->getNumberOfColumns();
if (dataCount > 0) {
m_loadedRowData.resize(dataCount);
CaretAssert((rowIndex >= 0) && (rowIndex < m_ciftiFile->getNumberOfRows()));
m_ciftiFile->getRow(&m_loadedRowData[0], rowIndex);
m_rowLoadedTextForMapName = ("Row: "
+ AString::number(rowIndex)
+ ", Voxel XYZ: ("
+ AString::fromNumbers(xyz, 3, ",")
+ ")");
m_rowLoadedText = ("Row_"
+ AString::number(rowIndex)
+ "_Voxel_XYZ_"
+ AString::fromNumbers(xyz, 3, "_").replace('-', 'm'));
CaretLogFine("Read row for voxel " + AString::fromNumbers(xyz, 3, ","));
dataWasLoaded = true;
}
}
if (dataWasLoaded == false) {
CaretLogFine("FAILED to read row for voxel " + AString::fromNumbers(xyz, 3, ","));
}
updateForChangeInMapDataWithMapIndex(0);
m_connectivityDataLoaded->setVolumeXYZLoading(xyz,
rowIndex);
return rowIndex;
}
/**
* Load connectivity data for the voxel indices and then average the data.
*
* @param mapIndex
* Index of map.
* @param volumeDimensionIJK
* Dimensions of the volume.
* @param voxelIndices
* Indices of voxels.
* @throw
* DataFileException if there is an error.
*/
bool
CiftiMappableConnectivityMatrixDataFile::loadMapAverageDataForVoxelIndices(const int32_t mapIndex,
const int64_t volumeDimensionIJK[3],
const std::vector<VoxelIJK>& voxelIndices) throw (DataFileException)
{
if (mapIndex != 0) { // eliminates compilation warning when compiled for release
CaretAssert(mapIndex == 0);
}
if (m_ciftiFile == NULL) {
setLoadedRowDataToAllZeros();
return false;
}
/*
* Loading of data disabled?
*/
if (m_dataLoadingEnabled == false) {
return false;
}
setLoadedRowDataToAllZeros();
/*
* Match dimensions
*/
std::vector<int64_t> volumeDimensions;
getDimensions(volumeDimensions);
if (volumeDimensions.size() < 3) {
return false;
}
if ((volumeDimensions[0] != volumeDimensionIJK[0])
|| (volumeDimensions[1] != volumeDimensionIJK[1])
|| (volumeDimensions[2] != volumeDimensionIJK[2])) {
return false;
}
/*
* Get content for map.
*/
const int64_t dataCount = m_ciftiFile->getNumberOfColumns();
if (dataCount <= 0) {
return false;
}
const int64_t numberOfVoxelIndices = static_cast<int64_t>(voxelIndices.size());
bool userCancelled = false;
const int32_t progressUpdateInterval = 1;
EventProgressUpdate progressEvent(0,
numberOfVoxelIndices,
0,
("Loading data for "
+ QString::number(numberOfVoxelIndices)
+ " voxels in file ")
+ getFileNameNoPath());
EventManager::get()->sendEvent(progressEvent.getPointer());
std::vector<float> rowData(dataCount);
std::vector<double> rowSum(dataCount, 0.0);
/*
* Load and sum the data for all rows
*/
int64_t numberOfRowsLoaded = 0;
for (int64_t i = 0; i < numberOfVoxelIndices; i++) {
if ((i % progressUpdateInterval) == 0) {
progressEvent.setProgress(i,
"");
EventManager::get()->sendEvent(progressEvent.getPointer());
if (progressEvent.isCancelled()) {
userCancelled = true;
break;
}
}
const VoxelIJK& voxelIJK = voxelIndices[i];
const int64_t rowIndex = getRowIndexForVoxelIndexWhenLoading(voxelIJK.m_ijk);
if (rowIndex >= 0) {
CaretAssert((rowIndex >= 0) && (rowIndex < m_ciftiFile->getNumberOfRows()));
m_ciftiFile->getRow(&rowData[0],
rowIndex);
for (int64_t j = 0; j < dataCount; j++) {
rowSum[j] += rowData[j];
}
numberOfRowsLoaded++;
}
}
if (userCancelled) {
m_loadedRowData.clear();
m_loadedRowData.resize(dataCount, 0.0);
}
else if (numberOfRowsLoaded > 0) {
progressEvent.setProgress(numberOfVoxelIndices - 1,
"Averaging voxel data");
EventManager::get()->sendEvent(progressEvent.getPointer());
m_loadedRowData.resize(dataCount, 0.0);
for (int64_t j = 0; j < dataCount; j++) {
m_loadedRowData[j] = rowSum[j] / numberOfRowsLoaded;
}
m_rowLoadedTextForMapName = ("Averaged Voxel Count: "
+ AString::number(numberOfVoxelIndices));
m_connectivityDataLoaded->setVolumeAverageVoxelLoading(volumeDimensionIJK,
voxelIndices);
return true;
}
updateForChangeInMapDataWithMapIndex(0);
return false;
}
/**
* @return Text describing row loaded that uses
* underscores as separators.
*/
AString
CiftiMappableConnectivityMatrixDataFile::getRowLoadedText() const
{
return m_rowLoadedText;
}
/**
* Get the name of the map at the given index. For connectivity matrix
* files this always returns a description of the last data row that
* was loaded.
*
* @param mapIndex
* Index of the map.
* @return
* Name of the map.
*/
AString
CiftiMappableConnectivityMatrixDataFile::getMapName(const int32_t /*mapIndex*/) const
{
return m_rowLoadedTextForMapName;
}
AString
CiftiMappableConnectivityMatrixDataFile::getRowName(const int32_t rowIndex) const
{
const CiftiXML& xml = m_ciftiFile->getCiftiXML();
if (xml.getMappingType(CiftiXML::ALONG_COLUMN) != CiftiMappingType::PARCELS) return "";//TSC: this was originally implemented only for parcels, dunno why
const std::vector<CiftiParcelsMap::Parcel>& plist = xml.getParcelsMap(CiftiXML::ALONG_COLUMN).getParcels();
CaretAssertVectorIndex(plist, rowIndex);
return plist[rowIndex].m_name;
}
AString
CiftiMappableConnectivityMatrixDataFile::getColumnName(const int32_t columnIndex) const
{
const CiftiXML& xml = m_ciftiFile->getCiftiXML();
if (xml.getMappingType(CiftiXML::ALONG_ROW) != CiftiMappingType::PARCELS) return "";//ditto
const std::vector<CiftiParcelsMap::Parcel>& plist = xml.getParcelsMap(CiftiXML::ALONG_ROW).getParcels();
CaretAssertVectorIndex(plist, columnIndex);
return plist[columnIndex].m_name;
}
/**
* Save file data from the scene. For subclasses that need to
* save to a scene, this method should be overriden. sceneClass
* will be valid and any scene data should be added to it.
*
* @param sceneAttributes
* Attributes for the scene. Scenes may be of different types
* (full, generic, etc) and the attributes should be checked when
* restoring the scene.
*
* @param sceneClass
* sceneClass to which data members should be added.
*/
void
CiftiMappableConnectivityMatrixDataFile::saveFileDataToScene(const SceneAttributes* sceneAttributes,
SceneClass* sceneClass)
{
CiftiMappableDataFile::saveFileDataToScene(sceneAttributes,
sceneClass);
m_sceneAssistant->saveMembers(sceneAttributes, sceneClass);
}
/**
* Restore file data from the scene. For subclasses that need to
* restore from a scene, this method should be overridden. The scene class
* will be valid and any scene data may be obtained from it.
*
* @param sceneAttributes
* Attributes for the scene. Scenes may be of different types
* (full, generic, etc) and the attributes should be checked when
* restoring the scene.
*
* @param sceneClass
* sceneClass for the instance of a class that implements
* this interface. Will NEVER be NULL.
*/
void
CiftiMappableConnectivityMatrixDataFile::restoreFileDataFromScene(const SceneAttributes* sceneAttributes,
const SceneClass* sceneClass)
{
CiftiMappableDataFile::restoreFileDataFromScene(sceneAttributes,
sceneClass);
m_connectivityDataLoaded->reset();
m_sceneAssistant->restoreMembers(sceneAttributes,
sceneClass);
/*
* Loading of data may be disabled in the scene
* so temporarily enabled loading and then
* restore the status.
*/
const int32_t mapIndex = 0;
const bool loadingEnabledStatus = isMapDataLoadingEnabled(mapIndex);
setMapDataLoadingEnabled(mapIndex, true);
switch (m_connectivityDataLoaded->getMode()) {
case ConnectivityDataLoaded::MODE_NONE:
setLoadedRowDataToAllZeros();
break;
case ConnectivityDataLoaded::MODE_ROW:
{
int64_t rowIndex;
m_connectivityDataLoaded->getRowLoading(rowIndex);
loadDataForRowIndex(rowIndex);
}
break;
case ConnectivityDataLoaded::MODE_SURFACE_NODE:
{
StructureEnum::Enum structure;
int32_t surfaceNumberOfNodes;
int32_t surfaceNodeIndex;
int64_t rowIndex;
m_connectivityDataLoaded->getSurfaceNodeLoading(structure,
surfaceNumberOfNodes,
surfaceNodeIndex,
rowIndex);
loadMapDataForSurfaceNode(mapIndex,
surfaceNumberOfNodes,
structure,
surfaceNodeIndex);
}
break;
case ConnectivityDataLoaded::MODE_SURFACE_NODE_AVERAGE:
{
StructureEnum::Enum structure;
int32_t surfaceNumberOfNodes;
std::vector<int32_t> surfaceNodeIndices;
m_connectivityDataLoaded->getSurfaceAverageNodeLoading(structure,
surfaceNumberOfNodes,
surfaceNodeIndices);
loadMapAverageDataForSurfaceNodes(mapIndex,
surfaceNumberOfNodes,
structure,
surfaceNodeIndices);
}
break;
case ConnectivityDataLoaded::MODE_VOXEL_XYZ:
{
float volumeXYZ[3];
int64_t rowIndex;
m_connectivityDataLoaded->getVolumeXYZLoading(volumeXYZ,
rowIndex);
loadMapDataForVoxelAtCoordinate(mapIndex, volumeXYZ);
}
break;
case ConnectivityDataLoaded::MODE_VOXEL_IJK_AVERAGE:
{
int64_t volumeDimensionsIJK[3];
std::vector<VoxelIJK> voxelIndicesIJK;
m_connectivityDataLoaded->getVolumeAverageVoxelLoading(volumeDimensionsIJK,
voxelIndicesIJK);
loadMapAverageDataForVoxelIndices(mapIndex,
volumeDimensionsIJK,
voxelIndicesIJK);
}
break;
}
setMapDataLoadingEnabled(mapIndex,
loadingEnabledStatus);
}
|