Commit f418ffa2 authored by giwi97's avatar giwi97

feature extraction

parent f9ab0b28
......@@ -271,6 +271,19 @@
" return arr_prep"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"def featureExtraction1(arr):\n",
" arr_feature=[]\n",
" for i in range(np.shape(arr)[0]):\n",
" arr_feature.append(FtrExtractHOG(arr[i]))\n",
" return arr_feature"
]
},
{
"cell_type": "code",
"execution_count": null,
......
......@@ -271,6 +271,19 @@
" return arr_prep"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"def featureExtraction1(arr):\n",
" arr_feature=[]\n",
" for i in range(np.shape(arr)[0]):\n",
" arr_feature.append(FtrExtractHOG(arr[i]))\n",
" return arr_feature"
]
},
{
"cell_type": "code",
"execution_count": null,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment