Skip to content

SGProcessingManager/include/util/InputTypes.hpp

Namespaces

Name
sgns
sgns::sgprocessing

Classes

Name
class sgns::sgprocessing::InputTypes

Source code

#ifndef INPUTTYPES_HPP_
#define INPUTTYPES_HPP_
#include <InputFormat.hpp>
#include <outcome/sgprocmgr-outcome.hpp>

namespace sgns::sgprocessing
{
    class InputTypes
    {
    public:
        enum class Error
        {
            NOT_IMAGE_TYPE = 1,
            NOT_FLOAT_TYPE = 2,
        };

        InputTypes();

        ~InputTypes();

        static outcome::result<int> GetImageChannels( sgns::InputFormat format );

    private:

    };
}


#endif

Updated on 2026-03-04 at 13:10:44 -0800