图像的平均直方图

时间:2019-09-22 04:34:18

标签: python textures histogram average

对于使用LBP查找图像纹理并计算直方图的项目。我正在为900多个ROI图像(即人的脸颊)进行此操作,并且需要找到一个“平均”直方图,该直方图基本上对应于平均脸颊纹理。从其他900个计算直方图的最佳方法是什么?

我的直方图在bin文件中序列化,然后循环浏览。我不太确定该从哪里去。

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.mih.demo2"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.firebase:firebase-core:16.0.4'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

0 个答案:

没有答案