not quite.
just like normal numbers (base 10) have places, like 1s, 10, 100s, and so on, Binary (or also base 2) has places for 1s, 2s, 4s, 8s, 16s, and on.
base 10 goes up each digit by the power of 10 (1x10 = 10; 10x10 = 100; 100x10 = 1000)
base 2 goes up each digit by the power of 2 (1x2 = 2; 2x2 = 4; 4x2 = 8 )
a way to convert binary to base 10 is shown below
11010110 = 1x128 + 1x64 + 0x32 + 1x16 + 0x8 + 1x4 + 1x2 + 0x1 = 214
ternary is just the same way, except by powers of 3 (1x3 = 3; 3x3 = 9; 9x3 = 27)