RAW is not a standard format and, therefore, in order to help you, we need to know more about what RAW means in the context of the software that you are using.
If you are lucky, the RAW file will be a binary file containing just the data and it'll be accompanied by an additional text file (the header) containing the information required to read it. If that is not the case, you probably can get the information that you need from the software that you use to save the file.
If you are really lucky, the header file will have extension ".rpl" and then you'll be able to read it directly with HyperSpy. If not, you can write manually the header file with the information extracted from the header file provided by the software or the information about the dataset that you should be able to get from the software. I send attached a header file to read a spectrum image that you can use as a template. It is essential to get the following keys right: data-length, data-type, depth, height, width. For a SI you shouldn't need to modify byte-order and record-by, and the rest of the keys just contain calibration information. This format is fully documented
here. HyperSpy's implementation is documented
in the code.